Skip to content
Snippets Groups Projects
Unverified Commit 7306f5fe authored by Charles Kerr's avatar Charles Kerr
Browse files

fix pylint line-too-long warnings

parent 2dc359b0
No related merge requests found
......@@ -13,7 +13,8 @@ def stop():
DBusTestCase.stop_dbus(DBusTestCase.session_bus_pid)
def start():
with sys.stdout if is_verbose_mode() else open(os.devnull, 'w', encoding='utf-8') as log:
with sys.stdout if is_verbose_mode() \
else open(os.devnull, 'w', encoding='utf-8') as log:
DBusTestCase.start_system_bus()
DBusTestCase.spawn_server_template('logind', None, log)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment