Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit a5b164e

Browse files
committed
from inspect import signature, getfullargspecfix pep8 remarks
1 parent 53a2b30 commit a5b164e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

numba_typing/arguments_annotation_default_func_class.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ def get_arguments_annotation_default_func(method):
1717
for arg in argspec.args:
1818
if (sig.parameters[arg].default != sig.empty):
1919
defaults[arg] = sig.parameters[arg].default
20-
2120
return annotations, defaults
22-
2321
def get_arguments_annotation_class(cls):
24-
return get_type_hints(cls)
22+
return get_type_hints(cls)
23+

0 commit comments

Comments
 (0)