Skip to content

Commit

Permalink
Fixed issue with empty args for filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE committed Aug 28, 2024
1 parent 0311a06 commit 652f747
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dynapyt/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ def filtered(self, func, f, args):
return False
if len(args) > 0:
sub_args = args
else:
sub_args = []
sub_arg_names = []
for arg in sub_args:
if (
Expand Down

0 comments on commit 652f747

Please sign in to comment.