summaryrefslogtreecommitdiff
path: root/timestamp.py
diff options
context:
space:
mode:
Diffstat (limited to 'timestamp.py')
-rw-r--r--timestamp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/timestamp.py b/timestamp.py
index e338c30..58eef04 100644
--- a/timestamp.py
+++ b/timestamp.py
@@ -17,7 +17,7 @@ class TimeStamp(datetime.datetime):
def __new__(cls, *args, **kw): # datetime is immutable
# type: (Any, Any) -> Any
- return datetime.datetime.__new__(cls, *args, **kw) # type: ignore
+ return datetime.datetime.__new__(cls, *args, **kw)
def __deepcopy__(self, memo):
# type: (Any) -> Any