We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82045b4 commit ec3ae09Copy full SHA for ec3ae09
1 file changed
barcode/writer.py
@@ -31,15 +31,15 @@ class Callbacks(TypedDict):
31
import ImageFont
32
except ImportError:
33
try:
34
- from PIL import Image # lint:ok
+ from PIL import Image
35
from PIL import ImageDraw
36
from PIL import ImageFont
37
38
import logging
39
40
log = logging.getLogger("pyBarcode")
41
log.info("Pillow not found. Image output disabled")
42
- Image = ImageDraw = ImageFont = None # lint:ok
+ Image = ImageDraw = ImageFont = None
43
44
45
def mm2px(mm, dpi=300):
0 commit comments