(self)
| 45 | return code.replace("1", "X").replace("0", " ") |
| 46 | |
| 47 | def __repr__(self) -> str: |
| 48 | return f"<{self.__class__.__name__}({self.get_fullcode()!r})>" |
| 49 | |
| 50 | def build(self) -> list[str]: |
| 51 | """Return a single-element list with a string encoding the barcode. |
nothing calls this directly
no test coverage detected