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:
3333 module.
3434 """
3535
36- def __init__ (self , module_name : str ):
36+ def __init__ (self , module_name : str ) -> None :
3737 self ._module_name = module_name
3838
3939 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]):
119119 This is meant to be used mostly by the auto_attr decorator in this module.
120120 """
121121
122- def __init__ (self , func : ty .Callable [[InstanceT ], T ]):
122+ def __init__ (self , func : ty .Callable [[InstanceT ], T ]) -> None :
123123 """Create a OneTimeProperty instance.
124124
125125 Parameters
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class TripWire:
4545 TripWireError: We do not have a_module
4646 """
4747
48- def __init__ (self , msg : str ):
48+ def __init__ (self , msg : str ) -> None :
4949 self ._msg = msg
5050
5151 def __getattr__ (self , attr_name : str ) -> Any :
You can’t perform that action at this time.
0 commit comments