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 41706dc commit f9aa54cCopy full SHA for f9aa54c
mypy/version.py
@@ -12,8 +12,6 @@
12
mypy_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
13
if __version__.endswith('+dev') and git.is_git_repo(mypy_dir) and git.have_git():
14
__version__ += '.' + git.git_revision(mypy_dir).decode('utf-8')
15
- mypy_version += '.' + git.git_revision(mypy_dir).decode('utf-8')
16
if git.is_dirty(mypy_dir):
17
__version__ += '.dirty'
18
- mypy_version += '.dirty'
19
del mypy_dir
0 commit comments