Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into dev
  • Loading branch information
nicolasK committed Feb 29, 2024
2 parents 85f2cf4 + 7881861 commit 3190fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion earthdaily/accessor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def force(*args, **kwargs):
)
if is_kwargs:
kwargs[key] = val(kwargs[key]) if val != list else [kwargs[key]]
elif (len(args)>=idx):
elif len(args) >= idx:
_args[idx] = val(args[idx]) if val != list else [args[idx]]
idx += 1
args = tuple(_args)
Expand Down

0 comments on commit 3190fe6

Please sign in to comment.