mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-28 09:36:01 -04:00
minor typo in Python file
This commit is contained in:
parent
e9a391f89e
commit
ee01b0f23b
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ def gf_inverse(a, modulus):
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import sys
|
import sys
|
||||||
if len(sys.argv) != 3:
|
if len(sys.argv) != 3:
|
||||||
print("Usage: python gf_inverse_parametric.py <value> <modulus>")
|
print("Usage: python gf_inverse.py <value> <modulus>")
|
||||||
print("Example: python gf_inverse_parametric.py 0x53 0x11B")
|
print("Example: python gf_inverse.py 0x53 0x11B")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
value = int(sys.argv[1], 0)
|
value = int(sys.argv[1], 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue