We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147590b commit 5527ce9Copy full SHA for 5527ce9
2 files changed
syncropatch_export/trace.py
@@ -3,7 +3,6 @@
3
import string
4
5
import numpy as np
6
-import pandas as pd
7
8
from .voltage_protocols import VoltageProtocol
9
tests/test_trace_class.py
@@ -5,7 +5,6 @@
import unittest
10
from syncropatch_export.trace import Trace
11
from syncropatch_export.voltage_protocols import VoltageProtocol
@@ -89,10 +88,6 @@ def test_protocol_get_ramps(self):
89
88
def test_get_QC(self):
90
QC_values = self.trace.get_onboard_QC_values()
91
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)
96
97
def test_get_traces(self):
98
v = self.trace.get_voltage()
0 commit comments