Skip to content

Commit 0e6135c

Browse files
committed
Fix DisplayPad import case sensitivity
Updated import statements to use the correct lowercase 'displaypad' module name instead of 'DisplayPad'. This change ensures compatibility with case-sensitive file systems.
1 parent 370aa4e commit 0e6135c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This library allows you to customize your own Mountain DisplayPad by assigning e
66
```python
77
import time
88

9-
from DisplayPad import DisplayPad
9+
from displaypad import DisplayPad
1010

1111

1212
def main():
File renamed without changes.
File renamed without changes.

tests/example.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22

3-
from DisplayPad import DisplayPad
3+
from displaypad import DisplayPad
44

55

66
def main():
@@ -13,7 +13,7 @@ def on_key_down(key_index):
1313
@pad.on('up')
1414
def on_key_down(key_index):
1515
print(f"Key {key_index} has been released.")
16-
16+
1717
@pad.on('error')
1818
def on_error(error):
1919
print(f"Error: {error}")

0 commit comments

Comments
 (0)