From f5ceb8927f2e7f2a9e29d62c8e4cef876f917249 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sat, 6 Feb 2021 00:32:26 +0800 Subject: =?UTF-8?q?=F0=9F=8F=97=20=F0=9F=92=A9=20=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84=EF=BC=8C=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=95=A5b=20BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/service/dormant.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 ATRI/service/dormant.py (limited to 'ATRI/service/dormant.py') diff --git a/ATRI/service/dormant.py b/ATRI/service/dormant.py deleted file mode 100644 index 7482d53..0000000 --- a/ATRI/service/dormant.py +++ /dev/null @@ -1,19 +0,0 @@ -from ATRI.exceptions import InvalidSetting - -from . import state - -class Dormant: - @staticmethod - def is_sleep() -> bool: - return True if state != 1 else False - - @staticmethod - def cont_wake(_type: bool) -> None: - global state - try: - if _type: - state = 0 - else: - state = 1 - except InvalidSetting: - raise InvalidSetting('Failed to modify variable!') -- cgit v1.2.3