Skip to content
Snippets Groups Projects

Assorted fixes

Merged Patrick Godwin requested to merge fix-cleanup_typos_prints into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -275,6 +275,8 @@ def parse_command_line():
# Do general program options checking
#
missing_required_options = []
if options.outdir is None:
missing_required_options.append("--outdir")
@@ -315,7 +317,6 @@ def parse_command_line():
assert options.row_counts >= 1, "Number of rows to be outputted must be larger than or equals to 1."
# Use LLOID method
if options.mode == 0:
missing_required_options = []
# Checking required options
if options.svd_bank is None:
missing_required_options.append("--svd-bank")
@@ -339,7 +340,6 @@ def parse_command_line():
# Use Finite Impulse Response
elif options.mode == 1:
missing_required_options = []
# Checking required options
if options.bank is None:
missing_required_options.append("--bank")
Loading