Skip to content

Commit 2833c75

Browse files
committed
Fix some formatting
1 parent f3a5f46 commit 2833c75

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

reportportal_client/_internal/aio/tasks.py

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

2424
_T = TypeVar('_T')
2525

26-
2726
DEFAULT_TASK_TRIGGER_NUM: int = 10
2827
DEFAULT_TASK_TRIGGER_INTERVAL: float = 1.0
2928

reportportal_client/_internal/services/client_id.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from .constants import CLIENT_ID_PROPERTY, RP_FOLDER_PATH, \
2323
RP_PROPERTIES_FILE_PATH
2424

25-
2625
logger = logging.getLogger(__name__)
2726
logger.addHandler(logging.NullHandler())
2827

reportportal_client/_internal/services/client_id.pyi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
from typing import Optional, Text
1515

16-
def _read_client_id() -> Optional[Text]:
17-
pass
1816

19-
def _store_client_id(client_id: Text) -> None:
20-
pass
17+
def _read_client_id() -> Optional[Text]: ...
2118

22-
def get_client_id() -> Text:
23-
pass
19+
20+
def _store_client_id(client_id: Text) -> None: ...
21+
22+
23+
def get_client_id() -> Text: ...

reportportal_client/_internal/services/statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
import certifi
2323
import requests
2424

25-
from reportportal_client.helpers import get_package_parameters
2625
from reportportal_client._internal.services.client_id import get_client_id
2726
from reportportal_client._internal.services.constants import CLIENT_INFO, ENDPOINT
27+
from reportportal_client.helpers import get_package_parameters
2828

2929
logger = logging.getLogger(__name__)
3030

reportportal_client/_internal/static/defines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"""This module provides RP client static objects and variables."""
1515

1616
import aenum as enum
17-
from reportportal_client.helpers import ATTRIBUTE_LENGTH_LIMIT as ATTRIBUTE_LIMIT
1817

18+
from reportportal_client.helpers import ATTRIBUTE_LENGTH_LIMIT as ATTRIBUTE_LIMIT
1919

2020
RP_LOG_LEVELS = {
2121
60000: 'UNKNOWN',

0 commit comments

Comments
 (0)