summaryrefslogtreecommitdiff
path: root/timestamp.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
commitdce10fcff1de54121fb8b440b883ef5d3fe2f96a (patch)
tree072b4bd247e6f1cd95c08c7b67fea0fc96f0578e /timestamp.py
parent2966a4f215861fa05e0dc7e0cd53350766e794c6 (diff)
downloadruamel.yaml-dce10fcff1de54121fb8b440b883ef5d3fe2f96a.tar.gz
Apply oitnb and mypy 0.620, then make everything work again0.15.48
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