Skip to content

Commit

Permalink
fix(plugin): remove deprecated function (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainmouquet authored Dec 14, 2024
1 parent 1efd4c4 commit a1bef4d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion pydocks/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def docker():
async def socket_test_connection(host, port):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
await anyio.wait_socket_writable(s)
await anyio.wait_writable(s)


@reattempt(max_retries=30, min_time=0.1, max_time=0.5)
Expand Down
54 changes: 27 additions & 27 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a1bef4d

Please sign in to comment.