Skip to content

Commit

Permalink
Ignore type error in optional import
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkram committed Aug 27, 2024
1 parent 97fa9cc commit 0b312b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binstar_client/utils/notebook/data_uri.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
try:
from PIL import Image
except ImportError:
Image = None
Image = None # type: ignore

from ...errors import PillowNotInstalled

Expand Down

0 comments on commit 0b312b7

Please sign in to comment.