summaryrefslogtreecommitdiff
path: root/util.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-12-26 16:05:10 +0100
committerAnthon van der Neut <anthon@mnt.org>2021-12-26 16:05:10 +0100
commite3439a8768e067134385cb2ad4746e9dcbcb851a (patch)
tree198b6de9ae5ffe1c7baa10f660add34354c76eab /util.py
parent1dd3366f57e1feff1aa2aeb01142b63520bac0a1 (diff)
downloadruamel.yaml-e3439a8768e067134385cb2ad4746e9dcbcb851a.tar.gz
fix mypy issues emitter.py0.17.19
Diffstat (limited to 'util.py')
-rw-r--r--util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/util.py b/util.py
index c2ab46f..f3a96a1 100644
--- a/util.py
+++ b/util.py
@@ -67,6 +67,7 @@ timestamp_regexp = RegExp(
def create_timestamp(
year, month, day, t, hour, minute, second, fraction, tz, tz_sign, tz_hour, tz_minute
):
+ # type: (Any, Any, Any, Any, Any, Any, Any, Any, Any, Any, Any, Any) -> Any
year = int(year)
month = int(month)
day = int(day)