Skip to content

Commit

Permalink
Fix violations of Flake8 Bugbear B037
Browse files Browse the repository at this point in the history
__init__() methods should not return anything.
  • Loading branch information
kaushikcfd authored and inducer committed Jan 21, 2024
1 parent 86ee4d5 commit 36bb94b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion loopy/target/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,6 @@ def __init__(self, t_unit: TranslationUnit, entrypoint: str):
self.packing_controller = SeparateArrayPackingController(self.sep_info)
else:
self.packing_controller = None
return None

def check_for_required_array_arguments(self, input_args):
# Formerly, the first exception raised when a required argument is not
Expand Down

0 comments on commit 36bb94b

Please sign in to comment.