Skip to content

Commit

Permalink
black the code
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Jun 3, 2024
1 parent c520a29 commit 74b5a05
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions numba_rvsdg/core/datastructures/ast_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -780,9 +780,7 @@ def codegen_view() -> list[Any]:
# Synthetic assignments just create Python assignments, one for
# each variable..
return [
ast.Assign(
[ast.Name(t)], ast.Constant(v), lineno=0
)
ast.Assign([ast.Name(t)], ast.Constant(v), lineno=0)
for t, v in block.variable_assignment.items()
]
elif type(block) is SyntheticTail:
Expand Down

0 comments on commit 74b5a05

Please sign in to comment.