aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xservice.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/service.py b/service.py
index 090cf6b..031cf0d 100755
--- a/service.py
+++ b/service.py
@@ -33,7 +33,9 @@ class RWAService(dbus.service.Object):
:param mockup_mode: Starts the service in mock up mode
"""
- def __init__(self, loop: GLib.MainLoop, mockup_mode: bool = False, one_time: bool = False):
+ def __init__(
+ self, loop: GLib.MainLoop, mockup_mode: bool = False, one_time: bool = False
+ ):
self.loop = loop
self.mockup_mode = mockup_mode
self.one_time = one_time
@@ -287,4 +289,4 @@ if __name__ == "__main__":
loop.run()
logging.info("Remove lock file ...")
- os.remove(lock_file_path) \ No newline at end of file
+ os.remove(lock_file_path)