We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d64d3 commit 9eebc20Copy full SHA for 9eebc20
tests/test_plotting.py
@@ -2,6 +2,9 @@
2
from probeinterface import generate_dummy_probe, generate_dummy_probe_group
3
from probeinterface.plotting import plot_probe, plot_probegroup
4
5
+# remove once plot_probe_group is removed
6
+from probeinterface.plotting import plot_probe_group
7
+
8
import matplotlib.pyplot as plt
9
import numpy as np
10
@@ -35,6 +38,9 @@ def test_plot_probegroup():
35
38
plot_probegroup(probegroup, same_axes=True, with_contact_id=True)
36
39
plot_probegroup(probegroup, same_axes=False)
37
40
41
+ # remove when plot_probe_group has been removed
42
+ plot_probe_group(probegroup)
43
44
# 3d
45
probegroup_3d = ProbeGroup()
46
for probe in probegroup.probes:
0 commit comments