Skip to content

Commit c7df967

Browse files
committed
garotm - fix formatting.
1 parent 9050513 commit c7df967

3 files changed

Lines changed: 16 additions & 7 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"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ sphinx-rtd-theme>=1.0.0
1414

1515
# Code quality
1616
mypy>=1.0.0
17-
black>=23.0.0
17+
black>=23.0.0
1818
isort>=5.0.0
1919
flake8>=7.0.0

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)