Skip to content

Commit d6ee441

Browse files
author
Hugo Osvaldo Barrera
committed
Remove star imports
1 parent bfe6f80 commit d6ee441

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

barcode/codex.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
from barcode.base import Barcode
66
from barcode.charsets import code128, code39
7-
from barcode.errors import *
7+
from barcode.errors import (
8+
BarcodeError,
9+
IllegalCharacterError,
10+
NumberOfDigitsError,
11+
)
812

913
"""Module: barcode.codex
1014

barcode/ean.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
from barcode.base import Barcode
66
from barcode.charsets import ean as _ean
7-
from barcode.errors import *
7+
from barcode.errors import (
8+
IllegalCharacterError,
9+
NumberOfDigitsError,
10+
WrongCountryCodeError,
11+
)
812

913
"""Module: barcode.ean
1014

barcode/itf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
from barcode.base import Barcode
66
from barcode.charsets import itf
7-
from barcode.errors import *
7+
from barcode.errors import (
8+
IllegalCharacterError,
9+
)
810

911
"""Module: barcode.itf
1012

0 commit comments

Comments
 (0)