Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
devzbysiu committed Dec 18, 2024
1 parent 0992103 commit 7477cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/qa/lib/fileshare.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,9 @@ def bind_port():
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 0)
sock.bind(('0.0.0.0', 49111))
sock.listen(1)
print(f"Successfully bound to fileshare port")
print("Successfully bound to fileshare port")
return sock
except socket.error as e:
except OSError as e:
print(f"Failed to bind to fileshare port: {e}")
return None

Expand Down

0 comments on commit 7477cb4

Please sign in to comment.