File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -766,7 +766,7 @@ def stdout_handler(line):
766766
767767 return output
768768
769- def _assert_refspec (self ):
769+ def _assert_refspec (self ) -> None :
770770 """Turns out we can't deal with remotes if the refspec is missing"""
771771 config = self .config_reader
772772 unset = 'placeholder'
@@ -880,7 +880,7 @@ def config_reader(self):
880880 Hence you may simple type config.get("pushurl") to obtain the information"""
881881 return self ._config_reader
882882
883- def _clear_cache (self ):
883+ def _clear_cache (self ) -> None :
884884 try :
885885 del (self ._config_reader )
886886 except AttributeError :
Original file line number Diff line number Diff line change 22[mypy]
33
44# TODO: enable when we've fully annotated everything
5- disallow_untyped_defs = True
5+ # disallow_untyped_defs = True
66
77# TODO: remove when 'gitdb' is fully annotated
88[mypy-gitdb.*]
You can’t perform that action at this time.
0 commit comments