summaryrefslogtreecommitdiff
path: root/timestamp.py
diff options
context:
space:
mode:
Diffstat (limited to 'timestamp.py')
-rw-r--r--timestamp.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/timestamp.py b/timestamp.py
index 7035c0f..b87a348 100644
--- a/timestamp.py
+++ b/timestamp.py
@@ -20,7 +20,6 @@ class TimeStamp(datetime.datetime):
def __deepcopy__(self, memo):
# type: (Any) -> Any
- ts = TimeStamp(self.year, self.month, self.day,
- self.hour, self.minute, self.second)
+ ts = TimeStamp(self.year, self.month, self.day, self.hour, self.minute, self.second)
ts._yaml = copy.deepcopy(self._yaml)
return ts