diff options
| author | J08nY | 2023-10-14 22:36:50 +0200 |
|---|---|---|
| committer | J08nY | 2023-10-14 22:37:10 +0200 |
| commit | e7d67a8ecc6240d21c051e4d1458bb725046a3ef (patch) | |
| tree | 04631173ca03f558083bac0935154194b1cada33 /pyecsca/ec | |
| parent | 883e5b00dd6b52264d68da66d8b9268f227a8752 (diff) | |
| download | pyecsca-e7d67a8ecc6240d21c051e4d1458bb725046a3ef.tar.gz pyecsca-e7d67a8ecc6240d21c051e4d1458bb725046a3ef.tar.zst pyecsca-e7d67a8ecc6240d21c051e4d1458bb725046a3ef.zip | |
Ditch the Optionals.
Fixes #47.
Diffstat (limited to 'pyecsca/ec')
| -rw-r--r-- | pyecsca/ec/mod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/ec/mod.py b/pyecsca/ec/mod.py index 3dcb609..81eccde 100644 --- a/pyecsca/ec/mod.py +++ b/pyecsca/ec/mod.py @@ -10,7 +10,7 @@ dispatches to the implementation chosen by the runtime configuration of the libr import random import secrets from functools import wraps, lru_cache -from typing import Type, Dict, Any, Tuple, Union, Optional +from typing import Type, Dict, Any, Tuple, Union from public import public from sympy import Expr, FF |
