Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10
rev: v0.14.14
hooks:
- id: ruff
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
Expand Down
1 change: 1 addition & 0 deletions examples/download/mpin_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
If it's the first time using this API, you'll have to download the dataset
with all of the neurons' data.
"""

from vedo import Plotter

from morphapi.api.mpin_celldb import MpinMorphologyAPI
Expand Down
4 changes: 1 addition & 3 deletions morphapi/api/mouselight.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,7 @@ def make_query(filterby=None, filter_regions=None, invert=False):
{}
}}
}}
""".format(
searchneurons
)
""".format(searchneurons)
else:
raise NotImplementedError("This feature is not available yet")
# Get predicate type
Expand Down
Loading