AllenInstitute / openscope_databook

OpenScope databook: a collaborative, versioned, data-centric collection of foundational analyses for reproducible systems neuroscience 🐁🧠🔬🖥️📈
https://alleninstitute.github.io/openscope_databook
Other
59 stars 18 forks source link

Bug: Import missing in cred_assign_figures.ipynb #380

Closed colleenjg closed 2 months ago

colleenjg commented 2 months ago

In the following try, except statement, I forgot to reimport cred_assign_utils at the end of the except clause. As a result, the notebook fails if the code goes through the except clause.

import os
try:
    from databook_utils import cred_assign_utils
except:
    !git clone https://github.com/AllenInstitute/openscope_databook.git
    %cd openscope_databook
    %pip install -e .

Will fix in a moment.

rcpeene commented 2 months ago

Merged into dev