Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-22 16:05:38 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-02-04 09:14:51 +0300
commitdc2b153835af985c1bd940aa4116b78bf248b6e0 (patch)
tree29383d6007d2f13c517ae4646e639362017aa9d4 /sphinx/extension.py
parent498fa379efe5b6b106c8d3eb56041164cdc8bab3 (diff)
Update type annotations
Diffstat (limited to 'sphinx/extension.py')
-rw-r--r--sphinx/extension.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/extension.py b/sphinx/extension.py
index c1e4a860a..88f022dab 100644
--- a/sphinx/extension.py
+++ b/sphinx/extension.py
@@ -26,6 +26,7 @@ logger = logging.getLogger(__name__)
class Extension(object):
def __init__(self, name, module, **kwargs):
+ # type: (unicode, Any, Any) -> None
self.name = name
self.module = module
self.metadata = kwargs