Skip to content

Commit dc9b293

Browse files
committed
clean up import & remove wrong documentation
1 parent 357cda9 commit dc9b293

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

element_array_ephys/ephys_report.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
import json
21
import pathlib
32
import datetime
43
import datajoint as dj
5-
import numpy as np
6-
import importlib
7-
import inspect
84
import typing as T
95

106
schema = dj.schema()
@@ -47,9 +43,7 @@ def make(self, key):
4743

4844
save_dir = _make_save_dir()
4945

50-
units = (
51-
ephys.CuratedClustering.Unit & key & "cluster_quality_label='good'"
52-
)
46+
units = ephys.CuratedClustering.Unit & key & "cluster_quality_label='good'"
5347

5448
shanks = set((probe.ProbeType.Electrode & units).fetch("shank"))
5549

@@ -98,7 +92,7 @@ class UnitLevelReport(dj.Computed):
9892
-> ephys.CuratedClustering.Unit
9993
---
10094
cluster_quality_label : varchar(100)
101-
waveform_plotly : longblob # dictionary storing the plotly object (from fig.to_plotly_json())
95+
waveform_plotly : longblob
10296
autocorrelogram_plotly : longblob
10397
depth_waveform_plotly : longblob
10498
"""

0 commit comments

Comments
 (0)