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):
766
766
767
767
return output
768
768
769
- def _assert_refspec (self ):
769
+ def _assert_refspec (self ) -> None :
770
770
"""Turns out we can't deal with remotes if the refspec is missing"""
771
771
config = self .config_reader
772
772
unset = 'placeholder'
@@ -880,7 +880,7 @@ def config_reader(self):
880
880
Hence you may simple type config.get("pushurl") to obtain the information"""
881
881
return self ._config_reader
882
882
883
- def _clear_cache (self ):
883
+ def _clear_cache (self ) -> None :
884
884
try :
885
885
del (self ._config_reader )
886
886
except AttributeError :
Original file line number Diff line number Diff line change 2
2
[mypy]
3
3
4
4
# TODO: enable when we've fully annotated everything
5
- disallow_untyped_defs = True
5
+ # disallow_untyped_defs = True
6
6
7
7
# TODO: remove when 'gitdb' is fully annotated
8
8
[mypy-gitdb.*]
You can’t perform that action at this time.
0 commit comments