Skip to content

Commit e4f36a1

Browse files
authored
Merge pull request #247 from SpikeInterface/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 2cdf024 + d01b1fd commit e4f36a1

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ 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
1212
files: ^src/

src/probeinterface/generator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
This module contains useful helper functions for generating probes.
33
44
"""
5+
56
from __future__ import annotations
67
import numpy as np
78

src/probeinterface/io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Neurodata Without Borders (.nwb)
1010
1111
"""
12+
1213
from __future__ import annotations
1314
from pathlib import Path
1415
from typing import Union, Optional

src/probeinterface/library.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
The gin platform enables contributions from users.
99
1010
"""
11+
1112
from __future__ import annotations
1213
import os
1314
from pathlib import Path

src/probeinterface/plotting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
Depending on Probe.ndim, the plotting is done in 2D or 3D
66
"""
7+
78
from __future__ import annotations
89
import numpy as np
910
from matplotlib import path as mpl_path

src/probeinterface/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Some utility functions
33
"""
4+
45
from __future__ import annotations
56
from importlib import import_module
67
from types import ModuleType

src/probeinterface/wiring.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Automatically set the `Probe.device_channel_indices` field.
33
"""
4+
45
from __future__ import annotations
56
import numpy as np
67

0 commit comments

Comments
 (0)