Skip to content

Commit 0746caf

Browse files
committed
ruff: Enable some extra rules
1 parent d674512 commit 0746caf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

barcode/codex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def render(self, writer_options=None, text=None):
249249
return super().render(options, text)
250250

251251

252-
class Gs1_128(Code128):
252+
class Gs1_128(Code128): # noqa: N801
253253
"""
254254
following the norm, a gs1-128 barcode is a subset of code 128 barcode,
255255
it can be generated by prepending the code with the FNC1 character

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ select = [
1616
"B0",
1717
"I",
1818
"UP",
19-
# "N",
19+
"N",
2020
"C4",
2121
"PT",
2222
"SIM",

0 commit comments

Comments
 (0)