1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-25 12:41:56 +03:00

Raise NotImplementedError in abstract methods

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
Werner Lewis
2022-08-25 09:56:51 +01:00
parent 486d25850f
commit d77d33defb
2 changed files with 3 additions and 3 deletions

View File

@ -122,7 +122,7 @@ class BignumOperation(BignumTarget, metaclass=ABCMeta):
This may be calculated during initialization and stored as `_result`,
or calculated when the method is called.
"""
pass
raise NotImplementedError
@staticmethod
def value_description(val) -> str: