You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise (argparse.ArgumentTypeError("{} is not a supported toolchain. Supported toolchains are {}".format(string, ", ".join(MemapParser.toolchains))))
486
-
else:
487
-
returnnewstring
488
-
489
-
export_formats= ["json", "csv-ci", "table"]
490
-
@staticmethod
491
-
defparse_export_format(string):
492
-
newstring=string.lower().replace("_","-")
493
-
ifnewstringnotinMemapParser.export_formats:
494
-
raise (argparse.ArgumentTypeError("{} is not a supported export format. Supported export formats are {}".format(string, ", ".join(MemapParser.export_formats))))
parser.add_argument('-t', '--toolchain', dest='toolchain', help='select a toolchain used to build the memory map file (%s)'%", ".join(MemapParser.toolchains),\
0 commit comments