Skip to content

Commit 26569b6

Browse files
dependabot[bot]codingjoe
authored andcommitted
Bump black from 22.12.0 to 23.1.0
Bumps [black](https://github.com/psf/black) from 22.12.0 to 23.1.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@22.12.0...23.1.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d1f68af commit 26569b6

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

linter-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bandit==1.7.4
2-
black==22.12.0
2+
black==23.1.0
33
flake8==6.0.0
44
isort==5.12.0
55
pydocstyle[toml]==6.3.0

s3file/middleware.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def __init__(self, get_response):
1818
def __call__(self, request):
1919
file_fields = request.POST.getlist("s3file")
2020
for field_name in file_fields:
21-
2221
paths = request.POST.getlist(field_name)
2322
if paths:
2423
try:

tests/test_views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def test_post__created(self, client, upload_file):
3939
assert response.status_code == http.HTTPStatus.CREATED
4040

4141
def test_post__bad_signature(self, client, upload_file):
42-
4342
bad_signature = base64.b64encode(
4443
hmac.new(b"eve", (self.policy + self.date).encode(), "sha256").digest()
4544
).decode()

0 commit comments

Comments
 (0)