From 081b352585ab81c9f0bea0ea790de0b3a514d337 Mon Sep 17 00:00:00 2001 From: elijahpetty <128415452+elijahpetty@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:36:07 -0600 Subject: [PATCH] update doc string to match signature (#4870) --- py/server/deephaven/table_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/server/deephaven/table_factory.py b/py/server/deephaven/table_factory.py index 9e01cda8147..033d4c7aec2 100644 --- a/py/server/deephaven/table_factory.py +++ b/py/server/deephaven/table_factory.py @@ -63,7 +63,7 @@ def time_table(period: Union[Duration, int, str, datetime.timedelta, np.timedelt period (Union[dtypes.Duration, int, str, datetime.timedelta, np.timedelta64, pd.Timedelta]): time interval between new row additions, can be expressed as an integer in nanoseconds, a time interval string, e.g. "PT00:00:00.001" or "PT1s", or other time duration types. - start_time (Union[None, str, datetime.datetime, np.datetime64], optional): + start_time (Union[None, Instant, int, str, datetime.datetime, np.datetime64, pd.Timestamp], optional): start time for adding new rows, defaults to None which means use the current time as the start time. blink_table (bool, optional): if the time table should be a blink table, defaults to False