Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct last_update_time type hint #1573

Merged
merged 1 commit into from
May 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/arcticdb/version_store/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class SymbolDescription(NamedTuple):
Whether the index is a simple index or a multi_index. ``NA`` indicates that the stored data does not have an index.
row_count : int
Number of rows.
last_update_time : datetime64
last_update_time : datetime.datetime
The time of the last update to the symbol, in UTC.
date_range : Tuple[Union[datetime.datetime, numpy.datetime64], Union[datetime.datetime, numpy.datetime64]]
The values of the index column in the first and last rows of this symbol in UTC. Both values will be NaT if:
Expand All @@ -145,7 +145,7 @@ class SymbolDescription(NamedTuple):
index: NameWithDType
index_type: str
row_count: int
last_update_time: datetime64
last_update_time: datetime.datetime
date_range: Tuple[Union[datetime.datetime, datetime64], Union[datetime.datetime, datetime64]]
sorted: str

Expand Down
Loading