diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-03-03 12:19:09 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-03-03 23:17:34 +0900 |
commit | 554199d30e418f72f215fae65924b47249d2544c (patch) | |
tree | fd952e21a8f4e9dabf91c5e3731dea3712ade006 /sphinx/__init__.py | |
parent | 28b1aceefedbb9c3a12d6ba7c712df8ad5e98db8 (diff) | |
download | sphinx-git-554199d30e418f72f215fae65924b47249d2544c.tar.gz |
Upgrade to mypy-0.5
Diffstat (limited to 'sphinx/__init__.py')
-rw-r--r-- | sphinx/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py index e98d2cdf0..42cf99c70 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,6 +21,10 @@ from os import path from .deprecation import RemovedInNextVersionWarning +if False: + # For type annotation + from typing import List # NOQA + # by default, all DeprecationWarning under sphinx package will be emit. # Users can avoid this by using environment variable: PYTHONWARNINGS= if 'PYTHONWARNINGS' not in os.environ: |