Skip to content

Commit b8b8216

Browse files
committed
Run pre-commit
1 parent b71029a commit b8b8216

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

adafruit_touchscreen.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636

3737
def map_range(x: float, in_min: int, in_max: int, out_min: int, out_max: int) -> float:
38-
3938
"""
4039
Maps a number from one range to another.
4140
@@ -109,7 +108,6 @@ def __init__(
109108
size: Optional[Tuple[int, int]] = None,
110109
invert_pressure: bool = True
111110
) -> None:
112-
113111
self._xm_pin = x1_pin
114112
self._xp_pin = x2_pin
115113
self._ym_pin = y1_pin

examples/touchscreen_calibrator_built_in.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
DISPLAY_ROTATION = 0 # Specify 0, 90, 180, or 270 degrees
3939
REPL_ONLY = False # True to disable graphics
4040

41+
4142
# pylint: disable=too-few-public-methods
4243
class Colors:
4344
"""A collection of colors used for graphic objects."""

0 commit comments

Comments
 (0)