File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/seabreeze/pyseabreeze Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ default_language_version:
4
4
python : python3.10
5
5
repos :
6
6
- repo : https://github.com/pre-commit/pre-commit-hooks
7
- rev : v4.5 .0
7
+ rev : v4.6 .0
8
8
hooks :
9
9
- id : trailing-whitespace
10
10
- id : end-of-file-fixer
11
11
- id : check-yaml
12
12
- id : check-added-large-files
13
13
- repo : https://github.com/psf/black
14
- rev : ' 24.2.0 '
14
+ rev : ' 24.4.2 '
15
15
hooks :
16
16
- id : black
17
17
language_version : python3
@@ -28,18 +28,18 @@ repos:
28
28
language_version : python3
29
29
exclude : " ^(build|docs|tests|setup.py)"
30
30
- repo : https://github.com/pre-commit/mirrors-mypy
31
- rev : ' v1.8 .0'
31
+ rev : ' v1.10 .0'
32
32
hooks :
33
33
- id : mypy
34
34
additional_dependencies : [numpy<1.25, pyusb>=1.0]
35
35
exclude : " ^(build|docs|tests|dev|setup.py)"
36
36
- repo : https://github.com/asottile/pyupgrade
37
- rev : v3.15.1
37
+ rev : v3.15.2
38
38
hooks :
39
39
- id : pyupgrade
40
40
args : [--py38-plus]
41
41
- repo : https://github.com/MarcoGorelli/cython-lint
42
- rev : v0.16.0
42
+ rev : v0.16.2
43
43
hooks :
44
44
- id : cython-lint
45
45
- id : double-quote-cython-strings
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ def __new__(
254
254
indices : iterable
255
255
index of electric dark pixel
256
256
"""
257
- return super ().__new__ (DarkPixelIndices , sorted (set (indices ))) # type: ignore
257
+ return super ().__new__ (DarkPixelIndices , sorted (set (indices )))
258
258
259
259
@classmethod
260
260
def from_ranges (cls , * ranges : tuple [int , int ]) -> DarkPixelIndices :
You can’t perform that action at this time.
0 commit comments