button: remove stale sentinel import

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-02-21 20:39:48 -05:00
parent e32fd688e4
commit 0e80e301f0
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@
from __future__ import annotations
import asyncio
import logging
from ..confighelper import SentinelClass
from typing import (
TYPE_CHECKING,
@ -18,7 +17,6 @@ if TYPE_CHECKING:
from .gpio import GpioFactory
from ..app import InternalTransport as ITransport
SENTINEL = SentinelClass.get_instance()
class ButtonManager:
def __init__(self, config: ConfigHelper) -> None: