We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f9039 commit b5cf834Copy full SHA for b5cf834
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v5.0.0
+ rev: v6.0.0
4
hooks:
5
- id: trailing-whitespace
6
- id: end-of-file-fixer
@@ -9,7 +9,7 @@ repos:
9
- id: check-added-large-files
10
11
- repo: https://github.com/astral-sh/ruff-pre-commit
12
- rev: v0.11.9
+ rev: v0.14.7
13
14
- id: ruff
15
# fix imports:
scripts/pretix-mock.py
@@ -166,7 +166,7 @@
166
167
168
class RequestHandler(http.server.BaseHTTPRequestHandler):
169
- def do_GET(self) -> None: # noqa: N802 (function name should be lowercase)
+ def do_GET(self) -> None:
170
"""Handle GET requests."""
171
path = urlparse(self.path).path # strip query parameters
172
0 commit comments