Skip to content

Commit 047fe28

Browse files
committed
fix: Apply isort import sorting fixes
- Fix import sorting in __init__.py and test_github_auth.py - All linting checks now pass locally - This should resolve CI failures
1 parent 535abc4 commit 047fe28

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

githubauthlib/__init__.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@
55
from various system-specific secure storage solutions.
66
"""
77

8-
from .github_auth import (CredentialHelperError, GitHubAuthError,
9-
InvalidTokenError, PlatformNotSupportedError,
10-
TokenNotFoundError, get_github_token)
8+
from .github_auth import (
9+
CredentialHelperError,
10+
GitHubAuthError,
11+
InvalidTokenError,
12+
PlatformNotSupportedError,
13+
TokenNotFoundError,
14+
get_github_token,
15+
)
1116

1217
__version__ = "2.0.0"
1318
__author__ = "garotm"

tests/test_github_auth.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
import unittest
55
from unittest.mock import patch
66

7-
from githubauthlib import (CredentialHelperError, InvalidTokenError,
8-
PlatformNotSupportedError, TokenNotFoundError,
9-
get_github_token)
7+
from githubauthlib import (
8+
CredentialHelperError,
9+
InvalidTokenError,
10+
PlatformNotSupportedError,
11+
TokenNotFoundError,
12+
get_github_token,
13+
)
1014

1115

1216
class TestGitHubAuth(unittest.TestCase):

0 commit comments

Comments
 (0)