Skip to content

Commit 8f741eb

Browse files
[pre-commit.ci] pre-commit autoupdate (#430)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.12.1 → 24.1.1](psf/black@23.12.1...24.1.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 6e8e8c4 commit 8f741eb

22 files changed

+22
-1
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ repos:
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- repo: https://github.com/psf/black
9-
rev: 23.12.1
9+
rev: 24.1.1
1010
hooks:
1111
- id: black

src/nwbinspector/checks/behavior.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Checks for types belonging to the pynwb.behavior module."""
2+
23
import numpy as np
34
from pynwb.behavior import SpatialSeries, CompassDirection
45

src/nwbinspector/checks/ecephys.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions specific to extracellular electrophysiology neurodata types."""
2+
23
import numpy as np
34

45
from pynwb.misc import Units

src/nwbinspector/checks/general.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions that examine any general neurodata_type with the available attributes."""
2+
23
from ..register_checks import register_check, InspectorMessage, Importance
34

45
COMMON_DESCRIPTION_PLACEHOLDERS = ["no description", "no desc", "none", "placeholder"]

src/nwbinspector/checks/icephys.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Checks specific to intracellular electrophysiology neurodata types."""
2+
23
from pynwb.icephys import IntracellularElectrode
34

45
from ..register_checks import register_check, Importance, InspectorMessage

src/nwbinspector/checks/image_series.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions specific to ImageSeries."""
2+
23
import ntpath
34
from pathlib import Path
45

src/nwbinspector/checks/images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Checks specific to the Images neurodata type."""
2+
23
from packaging.version import Version
34

45
from pynwb.image import IndexSeries

src/nwbinspector/checks/nwb_containers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions that can apply to any object inside an NWBContainer."""
2+
23
import os
34

45
import h5py

src/nwbinspector/checks/nwbfile_metadata.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions that examine general NWBFile metadata."""
2+
23
import re
34
from datetime import datetime
45

src/nwbinspector/checks/ophys.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Check functions specific to optical electrophysiology neurodata types."""
2+
23
from pynwb.ophys import (
34
RoiResponseSeries,
45
PlaneSegmentation,

0 commit comments

Comments
 (0)