We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33efa9 commit 9713a74Copy full SHA for 9713a74
src/tstool/analyzer/Python_TS_analyzer.py
@@ -163,7 +163,9 @@ def get_parameters_in_single_function(
163
sub_sub_node.start_byte : sub_sub_node.end_byte
164
]
165
if parameter_name != "" and parameter_name != "self":
166
- line_number = file_content[: sub_node.start_byte].count("\n") + 1
+ line_number = (
167
+ file_content[: sub_node.start_byte].count("\n") + 1
168
+ )
169
current_function.paras.add(
170
Value(
171
parameter_name,
0 commit comments