Merge pull request #5815 from jdufresne/analyzer-type

Define Documenter.analyzer as type ModuleAnalyzer
This commit is contained in:
Takeshi KOMIYA 2018-12-17 19:05:04 +09:00 committed by GitHub
commit 226f7bd4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,7 +264,7 @@ class Documenter:
# the parent/owner of the object to document
self.parent = None # type: Any
# the module analyzer to get at attribute docs, or None
self.analyzer = None # type: Any
self.analyzer = None # type: ModuleAnalyzer
@property
def documenters(self):