Skip to content

Commit 1e0f07b

Browse files
committed
Fix isort
1 parent de8d87e commit 1e0f07b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

reportportal_client/aio/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
# noinspection PyProtectedMember
2929
from reportportal_client._internal.aio.http import ClientSession, RetryingClientSession
3030

31-
# noinspection PyProtectedMember
32-
from reportportal_client._internal.services.auth import ApiKeyAuthAsync, AuthAsync, OAuthPasswordGrantAsync
33-
3431
# noinspection PyProtectedMember
3532
from reportportal_client._internal.aio.tasks import (
3633
DEFAULT_TASK_TRIGGER_INTERVAL,
@@ -47,6 +44,9 @@
4744
# noinspection PyProtectedMember
4845
from reportportal_client._internal.logs.batcher import LogBatcher
4946

47+
# noinspection PyProtectedMember
48+
from reportportal_client._internal.services.auth import ApiKeyAuthAsync, AuthAsync, OAuthPasswordGrantAsync
49+
5050
# noinspection PyProtectedMember
5151
from reportportal_client._internal.services.statistics import async_send_event
5252

reportportal_client/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242

4343
# noinspection PyProtectedMember
4444
from reportportal_client._internal.static.abstract import AbstractBaseClass
45-
4645
from reportportal_client.core.rp_issues import Issue
4746
from reportportal_client.core.rp_requests import (
4847
ErrorPrintingHttpRequest,

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
pytest
22
pytest-cov
33
pytest-asyncio
4+
black
5+
isort

tests/aio/test_aio_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from reportportal_client import OutputType
2828

2929
# noinspection PyProtectedMember
30-
from reportportal_client._internal.aio.http import ClientSession, DEFAULT_RETRY_NUMBER, RetryingClientSession
30+
from reportportal_client._internal.aio.http import DEFAULT_RETRY_NUMBER, ClientSession, RetryingClientSession
3131

3232
# noinspection PyProtectedMember
3333
from reportportal_client._internal.static.defines import NOT_SET

0 commit comments

Comments
 (0)