Skip to content

Commit a97e609

Browse files
Fix B026 Linting Errors
Signed-off-by: Hassan Abouelela <[email protected]>
1 parent c7255b7 commit a97e609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydis_site/apps/api/tests/test_github_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def encode(payload: dict, _: str, algorithm: str, *args, **kwargs) -> str:
2828
"""
2929
self.assertEqual("RS256", algorithm, "The GitHub App JWT must be signed using RS256.")
3030
return original_encode(
31-
payload, "secret-encoding-key", algorithm="HS256", *args, **kwargs
31+
payload, "secret-encoding-key", *args, algorithm="HS256", **kwargs
3232
)
3333

3434
original_encode = jwt.encode

0 commit comments

Comments
 (0)