We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Merge fetch_nwb does not work. Results in a property error.
The culprit is PR #730 When I reverted this line:
spyglass/src/spyglass/utils/dj_merge_tables.py
Line 516 in daf671e
cls.analysis_nwbfile
AnalysisNwbfile
To Reproduce Steps to reproduce the behavior: Run fetch_nwb on a merge table
fetch_nwb
The text was updated successfully, but these errors were encountered:
The property is needed to avoid circular import on startup, but it needs to be run on the class instance, not the class itself
(cls.analysis_nwbfile, "analysis_file_abs_path"), -> (cls().analysis_nwbfile, "analysis_file_abs_path"),
(cls.analysis_nwbfile, "analysis_file_abs_path"),
(cls().analysis_nwbfile, "analysis_file_abs_path"),
Sorry, something went wrong.
LorenFrankLab#732
5799f33
#732 (#734)
1062ac8
* #732 * Update changelog
CBroz1
Successfully merging a pull request may close this issue.
Describe the bug
Merge fetch_nwb does not work. Results in a property error.
The culprit is PR #730
When I reverted this line:
spyglass/src/spyglass/utils/dj_merge_tables.py
Line 516 in daf671e
cls.analysis_nwbfile
toAnalysisNwbfile
it worked again.To Reproduce
Steps to reproduce the behavior:
Run
fetch_nwb
on a merge tableThe text was updated successfully, but these errors were encountered: