Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzbrand committed Oct 24, 2024
1 parent 1114d2a commit 393488b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions quickreplies/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def test_quickreply(self):
to the configured URL
"""
quickreply: QuickReplyDestination = QuickReplyDestination.objects.create(
url="https://example.org", hmac_secret="test-secret" # noqa: S106 - Fake password/token for test purposes
url="https://example.org",
hmac_secret="test-secret", # noqa: S106 - Fake password/token for test purposes
)
url: str = reverse("quickreply-message", args=[quickreply.pk])
data = {
Expand Down Expand Up @@ -102,7 +103,8 @@ def test_non_quickreply(self):
configured URL
"""
quickreply: QuickReplyDestination = QuickReplyDestination.objects.create(
url="https://example.org", hmac_secret="test-secret" # noqa: S106 - Fake password/token for test purposes
url="https://example.org",
hmac_secret="test-secret", # noqa: S106 - Fake password/token for test purposes
)
url: str = reverse("quickreply-message", args=[quickreply.pk])
data = {
Expand Down

0 comments on commit 393488b

Please sign in to comment.