Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit c083f6a

Browse files
committed
Run isort on all source files
1 parent 9d6d427 commit c083f6a

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

cli_ui/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Callable, Dict, List, Optional, Sequence, Tuple, Type, Union, IO
1+
from typing import IO, Any, Callable, Dict, List, Optional, Sequence, Tuple, Type, Union
22

33
Dict, Type
44

@@ -15,8 +15,8 @@
1515
import traceback
1616

1717
import colorama
18-
import unidecode
1918
import tabulate
19+
import unidecode
2020

2121
ConfigValue = Union[None, bool, str]
2222
FileObj = IO[str]

cli_ui/tests/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
from typing import Any, Iterator, Optional
2-
import cli_ui
31
import re
2+
from typing import Any, Iterator, Optional
43

54
import pytest
65

6+
import cli_ui
7+
78

89
class MessageRecorder:
910
""" Helper class to tests emitted messages """

cli_ui/tests/test_cli_ui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from typing import Iterator
21
import datetime
32
import io
43
import operator
54
import re
5+
from typing import Iterator
66
from unittest import mock
77

8-
import colorama.ansi
98
import colorama
9+
import colorama.ansi
1010
import pytest
1111

1212
import cli_ui

0 commit comments

Comments
 (0)