Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flow/util/correlateRC.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def parse_args():
res_scale = 1e3
else:
print("unknown resistance unit")
exit
exit(1)

cap_unit = args.cap_unit
if cap_unit == "ff":
Expand All @@ -82,7 +82,7 @@ def parse_args():
cap_scale = 1e-12
else:
print("unknown capacitance unit")
exit
exit(1)


def makeDict():
Expand Down