diff options
author | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
commit | ee3e224e396494cd0d69bb6167087a071a20349c (patch) | |
tree | 5becd28570e58a03c6e1e231d0db24c264a73f88 /kvmd/apps/otg/hid/keyboard.py | |
parent | 4b75221e9470b4a009955d7677f16adf8e23e302 (diff) |
new typing style
Diffstat (limited to 'kvmd/apps/otg/hid/keyboard.py')
-rw-r--r-- | kvmd/apps/otg/hid/keyboard.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/apps/otg/hid/keyboard.py b/kvmd/apps/otg/hid/keyboard.py index d10a4b73..6a4d0184 100644 --- a/kvmd/apps/otg/hid/keyboard.py +++ b/kvmd/apps/otg/hid/keyboard.py @@ -20,13 +20,11 @@ # ========================================================================== # -from typing import Optional - from . import Hid # ===== -def make_keyboard_hid(report_id: Optional[int]=None) -> Hid: +def make_keyboard_hid(report_id: (int | None)=None) -> Hid: return Hid( protocol=1, # Keyboard protocol subclass=1, # Boot interface subclass |