Skip to content

Commit 0eedc70

Browse files
committed
move logging
1 parent 7fbcef7 commit 0eedc70

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

brainbox/examples/docs_load_spike_sorting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
insertions = one.alyx.rest('insertions', 'list')
2525
pid = insertions[0]['id']
26-
sl = SpikeSortingLoader(pid, one=one, atlas=ba)
26+
sl = SpikeSortingLoader(pid=pid, one=one, atlas=ba)
2727
spikes, clusters, channels = sl.load_spike_sorting()
2828
clusters_labeled = SpikeSortingLoader.merge_clusters(spikes, clusters, channels)
2929

brainbox/examples/docs_wheel_moves.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,9 +577,9 @@
577577
"name": "python",
578578
"nbconvert_exporter": "python",
579579
"pygments_lexer": "ipython3",
580-
"version": "3.7.7"
580+
"version": "3.9.7"
581581
}
582582
},
583583
"nbformat": 4,
584584
"nbformat_minor": 2
585-
}
585+
}

examples/loading_data/loading_video_data.ipynb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,6 @@
88
"# Loading Video Data"
99
]
1010
},
11-
{
12-
"cell_type": "code",
13-
"execution_count": null,
14-
"id": "5c687e72",
15-
"metadata": {
16-
"nbsphinx": "hidden"
17-
},
18-
"outputs": [],
19-
"source": [
20-
"# Turn off logging, this is a hidden cell on docs page\n",
21-
"import logging\n",
22-
"logger = logging.getLogger('ibllib')\n",
23-
"logger.setLevel(logging.CRITICAL)"
24-
]
25-
},
2611
{
2712
"cell_type": "markdown",
2813
"id": "95f87066",
@@ -151,6 +136,21 @@
151136
"### Example 3: Plot raster of lick times around feedback event"
152137
]
153138
},
139+
{
140+
"cell_type": "code",
141+
"execution_count": null,
142+
"id": "e37c1536",
143+
"metadata": {
144+
"nbsphinx": "hidden"
145+
},
146+
"outputs": [],
147+
"source": [
148+
"# Turn off logging, this is a hidden cell on docs page\n",
149+
"import logging\n",
150+
"logger = logging.getLogger('ibllib')\n",
151+
"logger.setLevel(logging.CRITICAL)"
152+
]
153+
},
154154
{
155155
"cell_type": "code",
156156
"execution_count": null,

0 commit comments

Comments
 (0)