mypy: PySvn Client.Log returns a dictionary mapping to many different types.

This commit is contained in:
Jordan Gedney 2017-05-22 13:44:45 -04:00 committed by Tim Abbott
parent b404fb3672
commit 00dbd26500

View file

@ -57,7 +57,7 @@ path, rev = sys.argv[1:] # type: Tuple[Text, Text]
# since its a local path, prepend "file://"
path = "file://" + path
entry = svn.log(path, revision_end=pysvn.Revision(pysvn.opt_revision_kind.number, rev))[0] # type: Dict[Text, Union[Text, pysvn.Revision, List[Dict[Text, pysvn.Revision]]]]
entry = svn.log(path, revision_end=pysvn.Revision(pysvn.opt_revision_kind.number, rev))[0] # type: Dict[Text, Any]
message = "**{0}** committed revision r{1} to `{2}`.\n\n> {3}".format(
entry['author'],
rev,