Skip to content

Commit

Permalink
regen
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Dec 10, 2022
1 parent b4f448b commit 392b8c3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kvmd/keyboard/mappings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

import dataclasses

from typing import Dict


# =====
@dataclasses.dataclass(frozen=True)
Expand All @@ -43,7 +41,7 @@ class Key:
usb: UsbKey


KEYMAP: Dict[str, Key] = {
KEYMAP: dict[str, Key] = {
"KeyA": Key(mcu=McuKey(code=1), usb=UsbKey(code=4, is_modifier=False)),
"KeyB": Key(mcu=McuKey(code=2), usb=UsbKey(code=5, is_modifier=False)),
"KeyC": Key(mcu=McuKey(code=3), usb=UsbKey(code=6, is_modifier=False)),
Expand Down

0 comments on commit 392b8c3

Please sign in to comment.