File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class ModuleProxy:
33
33
module.
34
34
"""
35
35
36
- def __init__ (self , module_name : str ):
36
+ def __init__ (self , module_name : str ) -> None :
37
37
self ._module_name = module_name
38
38
39
39
def __getattr__ (self , key : str ) -> ty .Any :
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ class OneTimeProperty(ty.Generic[T]):
119
119
This is meant to be used mostly by the auto_attr decorator in this module.
120
120
"""
121
121
122
- def __init__ (self , func : ty .Callable [[InstanceT ], T ]):
122
+ def __init__ (self , func : ty .Callable [[InstanceT ], T ]) -> None :
123
123
"""Create a OneTimeProperty instance.
124
124
125
125
Parameters
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class TripWire:
45
45
TripWireError: We do not have a_module
46
46
"""
47
47
48
- def __init__ (self , msg : str ):
48
+ def __init__ (self , msg : str ) -> None :
49
49
self ._msg = msg
50
50
51
51
def __getattr__ (self , attr_name : str ) -> Any :
You can’t perform that action at this time.
0 commit comments