Skip to content

Commit dd81bca

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 3edf81f commit dd81bca

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

githubauthlib/__init__.py

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

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

1712
__version__ = "2.0.0"
1813
__author__ = "garotm"

tests/test_github_auth.py

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

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

1511

1612
class TestGitHubAuth(unittest.TestCase):

0 commit comments

Comments
 (0)