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 ff9cf82 commit a3c549dCopy full SHA for a3c549d
neo/core/spiketrain.py
@@ -25,7 +25,7 @@
25
from neo.core.baseneo import BaseNeo, MergeError, merge_annotations
26
from neo.core.dataobject import DataObject, ArrayDict
27
# need this to avoid circular import issue
28
-import neo.io
+import neo
29
30
31
def check_has_dimensions_time(*values) -> None:
@@ -818,7 +818,7 @@ def merge(self, *others):
818
compatible, an Exception is raised.
819
"""
820
for other in others:
821
- if isinstance(other, neo.io.SpikeTrainProxy):
+ if isinstance(other, neo.io.proxyobjects.SpikeTrainProxy):
822
raise MergeError(
823
"Cannot merge, SpikeTrainProxy objects cannot be merged"
824
"into regular SpikeTrain objects, please load them first."
0 commit comments