Skip to content

Commit d6740ed

Browse files
committed
fix black and flake8
1 parent dd3490b commit d6740ed

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

fastmath.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class FunctionCallVisitor(ast.NodeVisitor):
108108
A list of module names to track the modules as the visitor traverses their AST
109109
110110
call_stack : list
111-
A list of njit functions, representing a chain of function calls,
111+
A list of njit functions, representing a chain of function calls,
112112
where each element is a string of the form "module_name.func_name".
113113
114114
out : list
@@ -148,10 +148,12 @@ class FunctionCallVisitor(ast.NodeVisitor):
148148
Pop the last function call from the stack of function calls, `call_stack`
149149
150150
goto_deeper_func(node)
151-
Calls the visit method from class `ast.NodeVisitor` on all children of the `node`.
151+
Calls the visit method from class `ast.NodeVisitor` on all children of
152+
the `node`.
152153
153154
goto_next_func(node)
154-
Calls the visit method from class `ast.NodeVisitor` on all children of the `node`.
155+
Calls the visit method from class `ast.NodeVisitor` on all children of
156+
the `node`.
155157
156158
push_out()
157159
Push the current function call stack, `call_stack`, onto the output list, `out`,

0 commit comments

Comments
 (0)