Skip to content

Commit

Permalink
Fixes for flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bensteinberg committed May 22, 2024
1 parent 0bd25e1 commit dbb7c02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_mirror.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pytest
from click.testing import CliRunner
from uuid import uuid4
import boto3
Expand Down Expand Up @@ -38,7 +37,7 @@ def test_nonexistent_queue(sqs, s3):
'no_such_queue'],
catch_exceptions=False)
except botocore.exceptions.ClientError as error:
assert error.response['Error']['Code'] == 'AWS.SimpleQueueService.NonExistentQueue'
assert error.response['Error']['Code'] == 'AWS.SimpleQueueService.NonExistentQueue' # noqa


def test_cli(sqs, s3, tmp_path):
Expand Down

0 comments on commit dbb7c02

Please sign in to comment.