Fix a few pycodestyle & pystyle issues

This commit is contained in:
Roman Zeyde
2023-02-04 18:41:54 +02:00
parent 2e61c84ca6
commit a9bcabc664
8 changed files with 46 additions and 43 deletions

View File

@@ -134,7 +134,7 @@ def server_thread(sock, handle_conn, quit_event):
break
# Handle connections from SSH concurrently.
threading.Thread(target=handle_conn,
kwargs=dict(conn=conn)).start()
kwargs={'conn': conn}).start()
log.debug('server thread stopped')