mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
Merge branch 'main' of github.com:koush/scrypted
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from enum import Enum
|
||||
from typing import AbstractSet, Any, Callable, Literal
|
||||
from typing import AbstractSet, Any, Callable, Literal, Union
|
||||
try:
|
||||
from typing import TypedDict
|
||||
except:
|
||||
@@ -9,7 +9,7 @@ except:
|
||||
|
||||
SettingValue = str
|
||||
EventListener = Callable[[Any, Any, Any], None]
|
||||
VibratePattern = int | list[int]
|
||||
VibratePattern = Union[int, list[int]]
|
||||
|
||||
|
||||
class Console:
|
||||
|
||||
Reference in New Issue
Block a user