Skip to content

Commit 5527ce9

Browse files
committed
Removed pandas imports
1 parent 147590b commit 5527ce9

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

syncropatch_export/trace.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import string
44

55
import numpy as np
6-
import pandas as pd
76

87
from .voltage_protocols import VoltageProtocol
98

tests/test_trace_class.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import unittest
66

77
import numpy as np
8-
import pandas as pd
98

109
from syncropatch_export.trace import Trace
1110
from syncropatch_export.voltage_protocols import VoltageProtocol
@@ -89,10 +88,6 @@ def test_protocol_get_ramps(self):
8988
def test_get_QC(self):
9089
QC_values = self.trace.get_onboard_QC_values()
9190
self.assertGreater(len(QC_values), 0)
92-
df = self.trace.get_onboard_QC_df()
93-
94-
self.assertGreater(df.shape[0], 0)
95-
self.assertGreater(df.shape[1], 0)
9691

9792
def test_get_traces(self):
9893
v = self.trace.get_voltage()

0 commit comments

Comments
 (0)