aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/sca/trace_set/chipwhisperer.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyecsca/sca/trace_set/chipwhisperer.py')
-rw-r--r--pyecsca/sca/trace_set/chipwhisperer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/sca/trace_set/chipwhisperer.py b/pyecsca/sca/trace_set/chipwhisperer.py
index e70c457..ea1fc99 100644
--- a/pyecsca/sca/trace_set/chipwhisperer.py
+++ b/pyecsca/sca/trace_set/chipwhisperer.py
@@ -44,7 +44,7 @@ class ChipWhispererTraceSet(TraceSet):
for samples, key, textin, textout in zip_longest(data["traces"], data["keylist"],
data["textin"], data["textout"]):
traces.append(
- Trace(samples, None, None, {"key": key, "textin": textin, "textout": textout}))
+ Trace(samples, {"key": key, "textin": textin, "textout": textout}))
del data["traces"]
del data["keylist"]
del data["textin"]