Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit 57a317e

Browse files
committed
Added Docs / Placeholder update.
1 parent 00815a5 commit 57a317e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "thetadata"
7-
version = "0.9.8"
7+
version = "0.9.9"
88
authors = [
99
{ name="Bailey Danseglio", email="bailey@thetadata.net" },
1010
{ name="Adler Weber", email="redacted@thetadata.net" },

thetadata/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .terminal import check_download, launch_terminal
2828

2929
_NOT_CONNECTED_MSG = "You must establish a connection first."
30-
_VERSION = '0.9.8'
30+
_VERSION = '0.9.9'
3131
URL_BASE = "http://127.0.0.1:25510/"
3232

3333

@@ -42,6 +42,7 @@ def _format_date(dt: date) -> str:
4242

4343

4444
def ms_to_time(ms_of_day: int) -> datetime.time:
45+
"""Converts milliseconds of day to a time object."""
4546
return datetime(year=2000, month=1, day=1, hour=int((ms_of_day / (1000 * 60 * 60)) % 24),
4647
minute=int(ms_of_day / (1000 * 60)) % 60, second=int((ms_of_day / 1000) % 60),
4748
microsecond=(ms_of_day % 1000) * 1000).time()

0 commit comments

Comments
 (0)