Skip to content

Commit 5b19213

Browse files
[pre-commit.ci] pre-commit autoupdate (#333)
<!--pre-commit.ci start--> updates: - [github.com/PyCQA/isort: 5.13.2 → 6.0.1](PyCQA/isort@5.13.2...6.0.1) - [github.com/psf/black: 24.10.0 → 25.1.0](psf/black@24.10.0...25.1.0) - [github.com/tox-dev/pyproject-fmt: v2.5.0 → v2.5.1](tox-dev/pyproject-fmt@v2.5.0...v2.5.1) - [github.com/astral-sh/ruff-pre-commit: v0.9.3 → v0.11.0](astral-sh/ruff-pre-commit@v0.9.3...v0.11.0) <!--pre-commit.ci end--> --------- Signed-off-by: Alexander Piskun <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Alexander Piskun <[email protected]>
1 parent d4a32c6 commit 5b19213

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
- id: mixed-line-ending
1313

1414
- repo: https://github.com/PyCQA/isort
15-
rev: 5.13.2
15+
rev: 6.0.1
1616
hooks:
1717
- id: isort
1818
files: >-
@@ -24,7 +24,7 @@ repos:
2424
)
2525
2626
- repo: https://github.com/psf/black
27-
rev: 24.10.0
27+
rev: 25.1.0
2828
hooks:
2929
- id: black
3030
files: >-
@@ -36,12 +36,12 @@ repos:
3636
)
3737
3838
- repo: https://github.com/tox-dev/pyproject-fmt
39-
rev: v2.5.0
39+
rev: v2.5.1
4040
hooks:
4141
- id: pyproject-fmt
4242

4343
- repo: https://github.com/astral-sh/ruff-pre-commit
44-
rev: v0.9.3
44+
rev: v0.11.0
4545
hooks:
4646
- id: ruff
4747

tests/actual_tests/files_test.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ async def test_file_download2file_async(anc_any, rand_bytes):
224224
def test_file_download2stream_invalid_type(nc_any):
225225
for test_type in (
226226
b"13",
227-
int(55),
227+
55,
228228
):
229229
with pytest.raises(TypeError):
230230
nc_any.files.download2stream("xxx", test_type)
@@ -234,7 +234,7 @@ def test_file_download2stream_invalid_type(nc_any):
234234
async def test_file_download2stream_invalid_type_async(anc_any):
235235
for test_type in (
236236
b"13",
237-
int(55),
237+
55,
238238
):
239239
with pytest.raises(TypeError):
240240
await anc_any.files.download2stream("xxx", test_type)
@@ -243,7 +243,7 @@ async def test_file_download2stream_invalid_type_async(anc_any):
243243
def test_file_upload_stream_invalid_type(nc_any):
244244
for test_type in (
245245
b"13",
246-
int(55),
246+
55,
247247
):
248248
with pytest.raises(TypeError):
249249
nc_any.files.upload_stream("xxx", test_type)
@@ -253,7 +253,7 @@ def test_file_upload_stream_invalid_type(nc_any):
253253
async def test_file_upload_stream_invalid_type_async(anc_any):
254254
for test_type in (
255255
b"13",
256-
int(55),
256+
55,
257257
):
258258
with pytest.raises(TypeError):
259259
await anc_any.files.upload_stream("xxx", test_type)

0 commit comments

Comments
 (0)