Skip to content

Commit

Permalink
Remove extra whitespace from type: ignore[].
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Nov 19, 2024
1 parent 4cdd206 commit 71f27f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions itemadapter/_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
try:
import scrapy # pylint: disable=W0611 (unused-import)
except ImportError:
scrapy = None # type: ignore [assignment]
scrapy = None # type: ignore[assignment]
_scrapy_item_classes = ()
else:
try:
Expand All @@ -24,9 +24,9 @@
try:
import attr # pylint: disable=W0611 (unused-import)
except ImportError:
attr = None # type: ignore [assignment]
attr = None # type: ignore[assignment]

try:
import pydantic # pylint: disable=W0611 (unused-import)
except ImportError:
pydantic = None # type: ignore [assignment]
pydantic = None # type: ignore[assignment]

0 comments on commit 71f27f0

Please sign in to comment.