Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
fix(Linting):blacked code
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz authored Nov 9, 2021
1 parent 749df7a commit a3e798b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion VirtualMachineService/VirtualMachineServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def catch_shutdown(signal, frame):
processor = Processor(handler)
if USE_SSL:
click.echo("Use SSL")
transport = TSSLSocket.TSSLServerSocket(host=HOST, port=PORT, certfile=CERTFILE,ssl_version=ssl.PROTOCOL_TLS_SERVER)
transport = TSSLSocket.TSSLServerSocket(
host=HOST, port=PORT, certfile=CERTFILE, ssl_version=ssl.PROTOCOL_TLS_SERVER
)
else:
click.echo("Does not use SSL")
transport = TSocket.TServerSocket(host=HOST, port=PORT)
Expand Down

0 comments on commit a3e798b

Please sign in to comment.