Skip to content

Commit 7aa8d99

Browse files
authored
Bump ruff from 0.8.0 to 0.11.7 (#203)
1 parent 3e909f5 commit 7aa8d99

File tree

3 files changed

+919
-583
lines changed

3 files changed

+919
-583
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
'Programming Language :: Python :: 3.10',
2727
'Programming Language :: Python :: 3.11',
2828
'Programming Language :: Python :: 3.12',
29+
'Programming Language :: Python :: 3.13',
2930
'Topic :: Software Development :: Libraries :: Python Modules',
3031
]
3132
dependencies = []
@@ -44,7 +45,7 @@ dev-dependencies = [
4445
"PyYAML==6.0.1",
4546
"invoke==2.2.0",
4647
"pytest-timeout==2.3.1",
47-
"ruff==0.8.0",
48+
"ruff==0.11.7",
4849
"mypy",
4950
"types-PyYAML",
5051
"atheris==2.3.0; python_version <= '3.11'",

python_multipart/multipart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ def data_callback(name: CallbackName, end_i: int, remaining: bool = False) -> No
12411241
elif state == MultipartState.HEADER_VALUE_ALMOST_DONE:
12421242
# The last character should be a LF. If not, it's an error.
12431243
if c != LF:
1244-
msg = "Did not find LF character at end of header " "(found %r)" % (c,)
1244+
msg = "Did not find LF character at end of header (found %r)" % (c,)
12451245
self.logger.warning(msg)
12461246
e = MultipartParseError(msg)
12471247
e.offset = i

0 commit comments

Comments
 (0)