diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-02-17 10:01:57 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-02-17 10:01:57 +0900 |
commit | 6371d69d79b1185528f2d87d6c400e7a782336f6 (patch) | |
tree | ef456bd04e0591c89f7aa1d70416946bc215d682 /sphinx/__main__.py | |
parent | 5bcef2a924762730b1e83c683810100981fa27cb (diff) | |
download | sphinx-git-6371d69d79b1185528f2d87d6c400e7a782336f6.tar.gz |
Fix mypy violations
Diffstat (limited to 'sphinx/__main__.py')
-rw-r--r-- | sphinx/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/__main__.py b/sphinx/__main__.py index 47a183d08..02bc806e7 100644 --- a/sphinx/__main__.py +++ b/sphinx/__main__.py @@ -13,4 +13,4 @@ import sys from sphinx.cmd.build import main -sys.exit(main(sys.argv[1:])) +sys.exit(main(sys.argv[1:])) # type: ignore |