Skip to content

Commit d99e72f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4a52467 commit d99e72f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file_transfer/send_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def send_file(filename: str = "mytext.txt", testing: bool = False) -> None:
1414
print(f"Got connection from {addr}")
1515
data = conn.recv(1024)
1616
if not data:
17-
break #IF NOT data received,the Client has closed the Connection.
17+
break # IF NOT data received,the Client has closed the Connection.
1818
print(f"Server received: {data = }")
1919

2020
with open(filename, "rb") as in_file:

0 commit comments

Comments
 (0)