Skip to content

Commit 6b010c1

Browse files
aaronmlAPbraxtonmckee
authored andcommitted
Remove date_time stuff from TP __init__.py
1 parent 75a943d commit 6b010c1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

typed_python/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@
7979
from typed_python.lib.map import map # noqa
8080
from typed_python.lib.pmap import pmap # noqa
8181
from typed_python.lib.reduce import reduce # noqa
82-
from typed_python.lib.timestamp import Timestamp # noqa
83-
from typed_python.lib.datetime.date_time import UTC, NYC, TimeOfDay, DateTime, Date, PytzTimezone # noqa
8482

8583
_types.initializeGlobalStatics()
8684

typed_python/lib/datetime/date_time_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import pytest
22
import pytz
33
import datetime
4+
from typed_python import NamedTuple
45
from typed_python.lib.datetime.date_time import (
56
Date,
67
DateTime,
@@ -15,8 +16,8 @@
1516
OneFoldOnlyError,
1617
PytzTimezone,
1718
)
18-
from typed_python import Timestamp, NamedTuple
1919
from typed_python.lib.datetime.date_parser_test import get_datetimes_in_range
20+
from typed_python.lib.timestamp import Timestamp
2021

2122

2223
def test_last_weekday_of_month():

0 commit comments

Comments
 (0)