Skip to content

Commit

Permalink
Add new line after each file
Browse files Browse the repository at this point in the history
  • Loading branch information
IreneLime committed Jan 7, 2025
1 parent 1a2c832 commit 28179e8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion application/features/Audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,4 @@ def handleClose(self):
keyfile=os.environ.get('SSL_KEY_PATH'),
version=ssl.PROTOCOL_TLS)

threading.Thread(target=audio_server.serveforever, daemon=True).start()
threading.Thread(target=audio_server.serveforever, daemon=True).start()
2 changes: 1 addition & 1 deletion application/features/Connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,4 +297,4 @@ def is_load_high(self):
# it is considered a high load
return True

return False
return False
2 changes: 1 addition & 1 deletion application/features/SFTP.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,4 @@ def mkdir(self, cwd, name):
stderr_lines = stderr.readlines()
if len(stderr_lines) != 0:
return False, stderr_lines[0]
return True, ''
return True, ''
2 changes: 1 addition & 1 deletion application/features/Term.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ def handleClose(self):
keyfile=os.environ.get('SSL_KEY_PATH'),
version=ssl.PROTOCOL_TLS)

threading.Thread(target=terminal_server.serveforever, daemon=True).start()
threading.Thread(target=terminal_server.serveforever, daemon=True).start()
2 changes: 1 addition & 1 deletion application/features/VNC.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,4 @@ def create_tunnel(self, remote_port):
args=[local_websocket_port, local_vnc_port])
proxy_thread.start()

return local_websocket_port
return local_websocket_port
2 changes: 1 addition & 1 deletion application/features/vncpasswd.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ def read_password():
if passwd != passwd2:
print("Passwords don't match - try again")
continue
return obfuscate_password(passwd)
return obfuscate_password(passwd)

0 comments on commit 28179e8

Please sign in to comment.