Skip to content

Commit 1dc288e

Browse files
committed
Fix imports, isort
1 parent 404149c commit 1dc288e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

automation/dict_manifest_update.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
from utils import get_from_url
1212

13+
1314
def main():
1415
base_dir = Path(__file__).parent.parent # base directory of the repository
1516
dict_json_path = base_dir / "metadata/dict.json"

automation/generate_encoding_config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from collections import defaultdict
2-
from typing import Iterable, Iterator, Mapping, NamedTuple, Optional
1+
from typing import Iterable, Iterator, NamedTuple, Optional
32

43
from alternative_encodings import cp859
54

automation/hook_manifest_add.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
import json
1010
from binascii import crc32
1111
from pathlib import Path
12-
from typing import Any, NamedTuple
13-
from natsort import natsorted
12+
from typing import Any, Iterator, NamedTuple
1413

1514
import toml
15+
from natsort import natsorted
16+
1617
from utils import get_from_url
1718

1819
base_dir = Path(__file__).parent.parent # base directory of the repository

0 commit comments

Comments
 (0)