lint
This commit is contained in:
parent
9031295b4d
commit
213cd6f7b0
@ -1,12 +1,13 @@
|
|||||||
"""Parse comic book archive names using the simple 'parse' parser."""
|
"""Parse comic book archive names using the simple 'parse' parser."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from calendar import month_abbr
|
from calendar import month_abbr
|
||||||
from copy import copy
|
from copy import copy
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from pprint import pformat
|
from pprint import pformat
|
||||||
from re import Match, Pattern
|
|
||||||
from sys import maxsize
|
from sys import maxsize
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
from comicfn2dict.log import print_log_header
|
from comicfn2dict.log import print_log_header
|
||||||
from comicfn2dict.regex import (
|
from comicfn2dict.regex import (
|
||||||
@ -35,6 +36,9 @@ from comicfn2dict.regex import (
|
|||||||
YEAR_TOKEN_RE,
|
YEAR_TOKEN_RE,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from re import Match, Pattern
|
||||||
|
|
||||||
_DATE_KEYS = frozenset({"year", "month", "day"})
|
_DATE_KEYS = frozenset({"year", "month", "day"})
|
||||||
_REMAINING_GROUP_KEYS = ("series", "title")
|
_REMAINING_GROUP_KEYS = ("series", "title")
|
||||||
# Ordered by commonness.
|
# Ordered by commonness.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
"""Unparse comic filenames."""
|
"""Unparse comic filenames."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from calendar import month_abbr
|
from calendar import month_abbr
|
||||||
|
Loading…
Reference in New Issue
Block a user