This commit is contained in:
Tero Paloheimo 2024-02-29 08:21:30 -07:00 committed by GitHub
commit 1e732da443
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ def on_start_break(break_obj):
global session global session
session['breaks'] += 1 session['breaks'] += 1
# Screen time has stoped. # Screen time has stopped.
on_stop() on_stop()

View File

@ -84,7 +84,7 @@ def on_start_break(break_obj):
def on_exit(): def on_exit():
""" """
Uninitialize the registered notificaion. Uninitialize the registered notification.
""" """
logging.debug('Stop Notification plugin') logging.debug('Stop Notification plugin')
Notify.uninit() Notify.uninit()

View File

@ -28,7 +28,7 @@ from xmlrpc.client import ServerProxy
class RPCServer: class RPCServer:
""" """
An aynchronous RPC server. An asynchronous RPC server.
""" """
def __init__(self, port, context): def __init__(self, port, context):
self.__running = False self.__running = False