melaniedc commented on code in PR #24948:
URL: https://github.com/apache/beam/pull/24948#discussion_r1069988910
##########
sdks/python/apache_beam/options/pipeline_options.py:
##########
@@ -284,6 +284,10 @@ def from_dictionary(cls, options):
flags.append('--%s=%s' % (k, i))
elif isinstance(v, dict):
flags.append('--%s=%s' % (k, json.dumps(v)))
+ elif v is None:
Review Comment:
Added a unit test case and confirmed it fails without and passes with my
change in my local env.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]