diff options
author | 2022-09-30 18:43:46 +0400 | |
---|---|---|
committer | 2022-09-30 19:19:09 +0400 | |
commit | a97e609aba84b2aa30184f1b4b2b422418d8ea6c (patch) | |
tree | 038aace606813720c1b5933952fba8b4710d9ddd | |
parent | Bump To Django 4.1.1 & Update Dependencies (diff) |
Fix B026 Linting Errors
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | pydis_site/apps/api/tests/test_github_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/tests/test_github_utils.py b/pydis_site/apps/api/tests/test_github_utils.py index f642f689..2eaf48d9 100644 --- a/pydis_site/apps/api/tests/test_github_utils.py +++ b/pydis_site/apps/api/tests/test_github_utils.py @@ -28,7 +28,7 @@ class GeneralUtilityTests(unittest.TestCase): """ self.assertEqual("RS256", algorithm, "The GitHub App JWT must be signed using RS256.") return original_encode( - payload, "secret-encoding-key", algorithm="HS256", *args, **kwargs + payload, "secret-encoding-key", *args, algorithm="HS256", **kwargs ) original_encode = jwt.encode |