Skip to content

Commit 1d4323b

Browse files
committed
Fix isort
1 parent 38d6c9b commit 1d4323b

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

reportportal_client/helpers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
from reportportal_client.helpers import markdown_helpers
44
from reportportal_client.helpers.common_helpers import (
55
ATTRIBUTE_LENGTH_LIMIT,
6-
TRUNCATE_REPLACEMENT,
76
CONTENT_TYPE_TO_EXTENSIONS,
8-
TYPICAL_MULTIPART_FOOTER_LENGTH,
7+
TRUNCATE_REPLACEMENT,
98
TYPICAL_FILE_PART_HEADER,
9+
TYPICAL_MULTIPART_FOOTER_LENGTH,
1010
LifoQueue,
1111
agent_name_version,
1212
await_if_necessary,

reportportal_client/helpers/markdown_helpers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
"""A set of utility methods for reporting to ReportPortal."""
22

3-
from typing import List, Dict, Optional
43
from itertools import zip_longest
5-
from typing import Any
4+
from typing import Any, Dict, List, Optional
65

76
MARKDOWN_MODE = "!!!MARKDOWN_MODE!!!"
87
NEW_LINE = "\n"

tests/helpers/test_markdown_helpers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from reportportal_client.helpers.markdown_helpers import (
2-
as_markdown,
2+
ONE_SPACE,
3+
TABLE_INDENT,
34
as_code,
4-
format_data_table,
5+
as_markdown,
56
as_two_parts,
7+
format_data_table,
68
format_data_table_dict,
7-
TABLE_INDENT,
8-
ONE_SPACE,
99
)
1010

1111
# Constants for table formatting

0 commit comments

Comments
 (0)