Skip to content

Commit 10fde7c

Browse files
style: auto-fix linting issues
1 parent 818f1f4 commit 10fde7c

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

codeflash/languages/javascript/treesitter_utils.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,7 @@ def _walk_tree_for_functions(
226226
key = (include_methods, include_arrow_functions)
227227
function_types = self._function_types_cache.get(key)
228228
if function_types is None:
229-
ft = {
230-
"function_declaration",
231-
"function_expression",
232-
"generator_function_declaration",
233-
"generator_function",
234-
}
229+
ft = {"function_declaration", "function_expression", "generator_function_declaration", "generator_function"}
235230
if include_arrow_functions:
236231
ft.add("arrow_function")
237232
if include_methods:

0 commit comments

Comments
 (0)