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 6f9b242 commit 62798a5Copy full SHA for 62798a5
barcode/base.py
@@ -48,7 +48,10 @@ def __repr__(self) -> str:
48
return f"<{self.__class__.__name__}({self.get_fullcode()!r})>"
49
50
def build(self) -> list[str]:
51
- """Return a singleton list with a string encoding the barcode as 1s and 0s."""
+ """Return a single-element list with a string encoding the barcode.
52
+
53
+ Typically the string consists of 1s and 0s, although it can contain
54
+ other characters such as G for guard lines (e.g. in EAN13)."""
55
raise NotImplementedError
56
57
def get_fullcode(self):
0 commit comments