Skip to content

Commit 1781416

Browse files
committed
Run linter.
1 parent c033d71 commit 1781416

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

fontbro/font.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
import sys
88
import tempfile
99
from collections import Counter
10+
from collections.abc import Generator
1011
from curses import ascii
1112
from io import BytesIO
1213
from pathlib import Path
13-
from typing import Any, IO, cast
14-
from collections.abc import Generator
14+
from typing import IO, Any, cast
15+
1516
import fsutil
1617
import ots
1718
from fontTools import unicodedata

fontbro/subset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import annotations
22

33
import re
4-
54
from collections.abc import Iterable
65

76
from fontTools.subset import parse_unicodes as _parse_unicodes

fontbro/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from __future__ import annotations
2+
23
import re
34
import unicodedata
4-
from typing import Any
55
from collections.abc import Callable
6+
from typing import Any
67

78
import fsutil
89

tests/test_family_classification.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from tests import AbstractTestCase
2-
31
# import fsutil
42
from fontbro.exceptions import ArgumentError
3+
from tests import AbstractTestCase
54

65

76
class FamilyClassificationTestCase(AbstractTestCase):

tests/test_save.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from io import BytesIO
2+
23
import fsutil
4+
35
from fontbro import Font
46
from tests import AbstractTestCase
57

0 commit comments

Comments
 (0)