We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84062a commit 2e809a8Copy full SHA for 2e809a8
setup.py
@@ -10,14 +10,14 @@
10
from codecs import open
11
import os
12
from os import path
13
+from typing import Dict
14
15
here = path.abspath(path.dirname(__file__))
16
-
17
-version = {}
+version: Dict[str, str] = {}
18
with open(os.path.join(here, 'datemath', '_version.py')) as f:
19
exec(f.read(), version)
20
- VERSION = str(version['__version__'])
+ VERSION = version['__version__']
21
22
23
setup(
0 commit comments