Skip to content

Commit

Permalink
fix flake8 B026
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Dec 1, 2023
1 parent 00d02c4 commit eb3f8c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loopy/translation_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ def executor(self,
"Maybe you want to invoke 'with_entrypoints' before "
"calling the translation unit?")

return self.target.get_kernel_executor(self, entrypoint=entrypoint,
*args, **kwargs)
return self.target.get_kernel_executor(self, *args,
entrypoint=entrypoint, **kwargs)

def __call__(self, *args, **kwargs):
"""
Expand Down

0 comments on commit eb3f8c7

Please sign in to comment.