Fix code style issue

Signed-off-by: Felix Conway <[email protected]>
This commit is contained in:
Felix Conway
2025-08-05 09:49:31 +01:00
parent b1db2ba374
commit 0767f443db
+4 -4
View File
@@ -350,10 +350,10 @@ class BignumGCDModInvOdd(BignumGCDInvModOperation):
else:
result_invmod = "{:x}".format(self._result_invmod)
return [
bignum_common.quote_str("{:x}".format(self._result_gcd)),
bignum_common.quote_str(result_invmod),
self._result_code,
]
bignum_common.quote_str("{:x}".format(self._result_gcd)),
bignum_common.quote_str(result_invmod),
self._result_code,
]
class BignumGCDModInvOddOnlyGCD(BignumGCDInvModOperation):