We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c137914 commit a8dbf88Copy full SHA for a8dbf88
src/fprime_gds/executables/cli.py
@@ -374,6 +374,8 @@ def parse_args(
374
def flatten_options(configured_options):
375
"""Flatten options down to arguments"""
376
flattened = []
377
+ if configured_options is None:
378
+ return flattened
379
for option, value in configured_options.items():
380
flattened.append(f"--{option}")
381
if value is not None:
0 commit comments