Skip to content

Commit ec3ae09

Browse files
committed
Remove meaningless comments
1 parent 82045b4 commit ec3ae09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

barcode/writer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ class Callbacks(TypedDict):
3131
import ImageFont
3232
except ImportError:
3333
try:
34-
from PIL import Image # lint:ok
34+
from PIL import Image
3535
from PIL import ImageDraw
3636
from PIL import ImageFont
3737
except ImportError:
3838
import logging
3939

4040
log = logging.getLogger("pyBarcode")
4141
log.info("Pillow not found. Image output disabled")
42-
Image = ImageDraw = ImageFont = None # lint:ok
42+
Image = ImageDraw = ImageFont = None
4343

4444

4545
def mm2px(mm, dpi=300):

0 commit comments

Comments
 (0)