unused imports

This commit is contained in:
Jelle Zijlstra 2023-12-11 14:45:32 -08:00
parent 034fd94ec2
commit acb8c7c09d
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
from functools import lru_cache from functools import lru_cache
from typing import Collection, Final, Iterator, List, Optional, Tuple, Union from typing import Collection, Final, Iterator, List, Optional, Tuple, Union
from black.mode import Mode, Preview from black.mode import Mode
from black.nodes import ( from black.nodes import (
CLOSING_BRACKETS, CLOSING_BRACKETS,
STANDALONE_COMMENT, STANDALONE_COMMENT,

View File

@ -15,7 +15,7 @@
) )
from black.brackets import COMMA_PRIORITY, DOT_PRIORITY, BracketTracker from black.brackets import COMMA_PRIORITY, DOT_PRIORITY, BracketTracker
from black.mode import Mode, Preview from black.mode import Mode
from black.nodes import ( from black.nodes import (
BRACKETS, BRACKETS,
CLOSING_BRACKETS, CLOSING_BRACKETS,

View File

@ -13,7 +13,7 @@
from mypy_extensions import mypyc_attr from mypy_extensions import mypyc_attr
from black.cache import CACHE_DIR from black.cache import CACHE_DIR
from black.mode import Mode, Preview from black.mode import Mode
from black.strings import get_string_prefix, has_triple_quotes from black.strings import get_string_prefix, has_triple_quotes
from blib2to3 import pygram from blib2to3 import pygram
from blib2to3.pgen2 import token from blib2to3.pgen2 import token