mirror of https://github.com/openXC7/prjxray.git
Run make format.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
03aa40d364
commit
bc65819b79
|
|
@ -3,8 +3,11 @@ import csv
|
||||||
import argparse
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(description="Creates design.json from output of ROI generation tcl script.")
|
parser = argparse.ArgumentParser(
|
||||||
|
description=
|
||||||
|
"Creates design.json from output of ROI generation tcl script.")
|
||||||
parser.add_argument('--design_txt', required=True)
|
parser.add_argument('--design_txt', required=True)
|
||||||
parser.add_argument('--design_info_txt', required=True)
|
parser.add_argument('--design_info_txt', required=True)
|
||||||
|
|
||||||
|
|
@ -25,5 +28,6 @@ def main():
|
||||||
|
|
||||||
json.dump(j, sys.stdout, indent=2, sort_keys=True)
|
json.dump(j, sys.stdout, indent=2, sort_keys=True)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue