Skip to content

Commit 742bfc7

Browse files
committed
Remove Ruff-format pre-commit hook
1 parent 9953965 commit 742bfc7

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.pre-commit-config.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,4 @@ repos:
99
hooks:
1010
- id: isort
1111
name: isort (python)
12-
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.6.4
14-
hooks:
15-
- id: ruff-format
12+

shapefile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2338,7 +2338,7 @@ def __shpRecord(self, s):
23382338
f.write(
23392339
pack(
23402340
"<%sd" % len(s.m),
2341-
*[m if m is not None else NODATA for m in s.m]
2341+
*[m if m is not None else NODATA for m in s.m],
23422342
)
23432343
)
23442344
else:

0 commit comments

Comments
 (0)