Skip to content

Commit 517d1e8

Browse files
Merge pull request #203 from developmentseed/kyle/bump-ruff
chore: Bump ruff to 0.15 in pre-commit config
2 parents 9844b18 + b9fda0a commit 517d1e8

File tree

3 files changed

+328
-329
lines changed

3 files changed

+328
-329
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,8 @@ repos:
44
hooks:
55
- id: validate-pyproject
66

7-
- repo: https://github.com/PyCQA/isort
8-
rev: 5.13.2
9-
hooks:
10-
- id: isort
11-
language_version: python
12-
137
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.3.5
8+
rev: v0.15.0
159
hooks:
1610
- id: ruff
1711
args: ["--fix"]
@@ -23,5 +17,5 @@ repos:
2317
- id: mypy
2418
language_version: python
2519
additional_dependencies:
26-
- types-attrs
27-
- pydantic~=2.0
20+
- types-attrs
21+
- pydantic~=2.0

morecantile/scripts/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def cli(ctx, verbose, quiet):
175175
@click.option(
176176
"--extents/--no-extents",
177177
default=False,
178-
help="Write shape extents as ws-separated strings (default is " "False).",
178+
help="Write shape extents as ws-separated strings (default is False).",
179179
)
180180
# Optionally buffer the shapes by shifting the x and y values of each
181181
# vertex by a constant number of decimal degrees or meters (depending
@@ -522,7 +522,7 @@ def custom(
522522
@click.option(
523523
"--extents/--no-extents",
524524
default=False,
525-
help="Write shape extents as ws-separated strings (default is " "False).",
525+
help="Write shape extents as ws-separated strings (default is False).",
526526
)
527527
# Optionally buffer the shapes by shifting the x and y values of each
528528
# vertex by a constant number of decimal degrees or meters (depending

0 commit comments

Comments
 (0)