Skip to content

Commit 9713a74

Browse files
reformat Python TS Analyzer with black
1 parent a33efa9 commit 9713a74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tstool/analyzer/Python_TS_analyzer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ def get_parameters_in_single_function(
163163
sub_sub_node.start_byte : sub_sub_node.end_byte
164164
]
165165
if parameter_name != "" and parameter_name != "self":
166-
line_number = file_content[: sub_node.start_byte].count("\n") + 1
166+
line_number = (
167+
file_content[: sub_node.start_byte].count("\n") + 1
168+
)
167169
current_function.paras.add(
168170
Value(
169171
parameter_name,

0 commit comments

Comments
 (0)