We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7384b3d commit b2d31ceCopy full SHA for b2d31ce
src/running/modifier.py
@@ -18,7 +18,7 @@ def __init__(self, value_opts=None, **kwargs):
18
self.__original_kwargs = kwargs
19
self._kwargs = copy.deepcopy(kwargs)
20
self.excludes = kwargs.get("excludes", {})
21
- if self.value_opts is not None:
+ if self.value_opts: # Neither None nor empty
22
# Expand value opts
23
for k, v in kwargs.items():
24
if type(v) is not str:
0 commit comments