File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -785,7 +785,7 @@ def arguments(self):
785
785
(self .posonlyargs or ()),
786
786
(self .args or ()),
787
787
(self .kwonlyargs or ()),
788
- [self .vararg , self .kwarg ]
788
+ [self .vararg , self .kwarg ],
789
789
)
790
790
)
791
791
Original file line number Diff line number Diff line change 22
22
Uninferable ,
23
23
bases ,
24
24
builder ,
25
+ extract_node ,
25
26
nodes ,
26
27
parse ,
27
28
test_utils ,
28
29
transforms ,
29
30
util ,
30
- extract_node ,
31
31
)
32
32
from astroid .const import PY310_PLUS , PY312_PLUS , Context
33
33
from astroid .context import InferenceContext
@@ -1948,6 +1948,7 @@ def test_str_repr_no_warnings(node):
1948
1948
1949
1949
def test_arguments_contains_all ():
1950
1950
"""Ensure Arguments.arguments actually returns all available arguments"""
1951
+
1951
1952
def manually_get_args (arg_node ) -> set :
1952
1953
return_args = {arg_node .args .vararg , arg_node .args .kwarg }
1953
1954
return_args .update (node .args .args )
You can’t perform that action at this time.
0 commit comments