aboutsummaryrefslogtreecommitdiff
path: root/test/sca/utils.py
diff options
context:
space:
mode:
authorJ08nY2021-01-20 02:33:45 +0100
committerJ08nY2021-01-20 02:33:45 +0100
commitadc3cd52147f35e0a7cc9008ac96619dd89cda48 (patch)
tree5d192ca410c844642c4e6583da64b0189dcfb5cb /test/sca/utils.py
parent7b9d67964807df4a7dd5de9e63f8ebf21a93850f (diff)
downloadpyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.tar.gz
pyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.tar.zst
pyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.zip
Diffstat (limited to 'test/sca/utils.py')
-rw-r--r--test/sca/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sca/utils.py b/test/sca/utils.py
index 7b3ae97..0a996cd 100644
--- a/test/sca/utils.py
+++ b/test/sca/utils.py
@@ -1,5 +1,6 @@
from os import mkdir, getenv, getcwd
from os.path import join, exists, split
+from typing import Dict
from unittest import TestCase
import matplotlib.pyplot as plt
@@ -19,7 +20,7 @@ def disabled(func):
return func
-cases = {}
+cases: Dict[str, int] = {}
class Plottable(TestCase):