Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 3ea17d2

Browse files
committed
Fix github URL and add version. Unclear where this goes currently.
1 parent 2c1f5af commit 3ea17d2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

adafruit_thermal_printer/thermal_printer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
__version__ = "0.0.0-auto.0"
42-
__repo__ = "https://github.com/adafruit/CircuitPython_thermal_printer.git"
42+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Thermal_Printer.git"
4343

4444

4545
# pylint: disable=bad-whitespace
@@ -111,7 +111,7 @@ class _PrintModeBit:
111111

112112
# Another odd pylint case, it seems to not realize this is a descriptor
113113
# which by design only implements get, set, init. As a result workaround
114-
# this pyline issue by disabling the warning.
114+
# this pylint issue by disabling the warning.
115115
# pylint: disable=too-few-public-methods
116116
def __init__(self, mask):
117117
self._mask = mask

adafruit_thermal_printer/thermal_printer_264.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838
import adafruit_thermal_printer.thermal_printer as thermal_printer
3939

4040

41+
__version__ = "0.0.0-auto.0"
42+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Thermal_Printer.git"
43+
44+
4145
# pylint: disable=bad-whitespace
4246
# Internally used constants.
4347
_INVERSE_MASK = const(1 << 1) # Not in 2.6.8 firmware

adafruit_thermal_printer/thermal_printer_legacy.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838
import adafruit_thermal_printer.thermal_printer as thermal_printer
3939

4040

41+
__version__ = "0.0.0-auto.0"
42+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Thermal_Printer.git"
43+
44+
4145
# pylint: disable=bad-whitespace
4246
# Internally used constants.
4347
_INVERSE_MASK = const(1 << 1) # Not in 2.6.8 firmware

0 commit comments

Comments
 (0)