We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9559a5 commit a7e8072Copy full SHA for a7e8072
scripts/tests/py/metadata.py
@@ -63,7 +63,7 @@ def __resolve_env_vals__(self, metadata_dict):
63
metadata_dict[run_arg]=run_arg_val
64
continue
65
66
- if run_arg_val == None:
+ if run_arg_val is None:
67
68
69
sub_args = run_arg_val.split('/')
@@ -77,7 +77,7 @@ def __resolve_env_vals__(self, metadata_dict):
77
# if a argument has been specified in the comment header
78
# but can't be found in the env file, consider it to be
79
# boolean value.
80
81
run_arg_val = True
82
83
if not self.__is_run_arg_valid__(run_arg_val):
0 commit comments