mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-19 03:24:50 -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__":
|
||||
import sys
|
||||
if len(sys.argv) != 3:
|
||||
print("Usage: python gf_inverse_parametric.py <value> <modulus>")
|
||||
print("Example: python gf_inverse_parametric.py 0x53 0x11B")
|
||||
print("Usage: python gf_inverse.py <value> <modulus>")
|
||||
print("Example: python gf_inverse.py 0x53 0x11B")
|
||||
sys.exit(1)
|
||||
|
||||
value = int(sys.argv[1], 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue