Skip to content

Commit 8814e47

Browse files
committed
change class names to match file (snake to camel)
1 parent ea2ce7f commit 8814e47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libraries/keyboard_layout_mac_fr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
__repo__ = "https://github.com/Neradoc/Circuitpython_Keyboard_Layouts.git"
3333

3434

35-
class KeyboardLayoutMacFR(KeyboardLayout):
35+
class KeyboardLayoutMacFr(KeyboardLayout):
3636
"""Map ASCII characters to appropriate keypresses on a FR Mac keyboard.
3737
Non-ASCII characters and most control characters will raise an exception.
3838
"""

libraries/keyboard_layout_us_dvo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
# Verbatim copy from keyboard_layout_us, only rewritten the ASCII_TO_KEYCODE table to match the Dvorak keycodes.
9-
class KeyboardLayoutUSDVO(KeyboardLayout):
9+
class KeyboardLayoutUsDvo(KeyboardLayout):
1010
"""Map ASCII characters to appropriate keypresses on a standard US PC keyboard.
1111
Non-ASCII characters and most control characters will raise an exception.
1212
"""

libraries/keyboard_layout_win_fr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
__repo__ = "https://github.com/Neradoc/Circuitpython_Keyboard_Layouts.git"
1818

1919

20-
class KeyboardLayoutFR(KeyboardLayout):
20+
class KeyboardLayoutWinFr(KeyboardLayout):
2121
"""Map ASCII characters to appropriate keypresses on a standard FR PC keyboard.
2222
From https://github.com/adafruit/Adafruit_CircuitPython_HID/pull/54
2323
Non-ASCII characters and most control characters will raise an exception.

0 commit comments

Comments
 (0)