button: remove stale sentinel import
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
e32fd688e4
commit
0e80e301f0
|
@ -6,7 +6,6 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
from ..confighelper import SentinelClass
|
|
||||||
|
|
||||||
from typing import (
|
from typing import (
|
||||||
TYPE_CHECKING,
|
TYPE_CHECKING,
|
||||||
|
@ -18,7 +17,6 @@ if TYPE_CHECKING:
|
||||||
from .gpio import GpioFactory
|
from .gpio import GpioFactory
|
||||||
from ..app import InternalTransport as ITransport
|
from ..app import InternalTransport as ITransport
|
||||||
|
|
||||||
SENTINEL = SentinelClass.get_instance()
|
|
||||||
|
|
||||||
class ButtonManager:
|
class ButtonManager:
|
||||||
def __init__(self, config: ConfigHelper) -> None:
|
def __init__(self, config: ConfigHelper) -> None:
|
||||||
|
|
Loading…
Reference in New Issue