We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 85f2cf4 + 7881861 commit 3190fe6Copy full SHA for 3190fe6
earthdaily/accessor/__init__.py
@@ -48,7 +48,7 @@ def force(*args, **kwargs):
48
)
49
if is_kwargs:
50
kwargs[key] = val(kwargs[key]) if val != list else [kwargs[key]]
51
- elif (len(args)>=idx):
+ elif len(args) >= idx:
52
_args[idx] = val(args[idx]) if val != list else [args[idx]]
53
idx += 1
54
args = tuple(_args)
0 commit comments