Skip to content

Commit 9707355

Browse files
committed
import formatting
isort default import formatting changes
1 parent b3bb2e7 commit 9707355

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

lib/fdiff/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env python3
22

3+
import argparse
34
import os
45
import sys
5-
import argparse
6-
from typing import Iterator, Iterable, List, Optional, Text, Tuple
6+
from typing import Iterable, Iterator, List, Optional, Text, Tuple
77

88
from . import __version__
99
from .color import color_unified_diff_line

lib/fdiff/diff.py

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
#!/usr/bin/env python3
22

33
import asyncio
4-
from difflib import unified_diff
54
import os
6-
from multiprocessing import Pool, cpu_count
75
import shlex
86
import subprocess
97
import tempfile
10-
from typing import Any, Iterator, Iterable, List, Optional, Text, Tuple
8+
from difflib import unified_diff
9+
from multiprocessing import Pool, cpu_count
10+
from typing import Any, Iterable, Iterator, List, Optional, Text, Tuple
1111

1212
from fontTools.ttLib import TTFont # type: ignore
1313

1414
from .exceptions import AIOError
15-
from .remote import (
16-
_get_filepath_from_url,
17-
create_async_get_request_session_and_run,
18-
)
19-
15+
from .remote import (_get_filepath_from_url,
16+
create_async_get_request_session_and_run)
2017
from .utils import get_file_modtime
2118

22-
2319
#
2420
#
2521
# Private functions

lib/fdiff/remote.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#!/usr/bin/env python3
22

3+
import asyncio
34
import os.path
45
import urllib.parse
5-
66
# from collections import namedtuple
77
from typing import Any, AnyStr, List, NamedTuple, Optional, Text, Tuple
88

99
import aiohttp # type: ignore
10-
import asyncio
1110

1211
from .aio import async_write_bin
1312

lib/fdiff/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python3
22

33
import os
4-
54
from datetime import datetime, timezone
65
from typing import List, Optional, Text, Union
76

0 commit comments

Comments
 (0)