Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 6, 2023
1 parent 7f21da0 commit 89a5c14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/connection/libssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def _connect_uncached(self):
private_key=private_key,
timeout=self._play_context.timeout,
port=port,
**ssh_connect_kwargs
**ssh_connect_kwargs,
)
except LibsshSessionException as e:
msg = "ssh connection failed: " + to_text(e)
Expand Down
5 changes: 3 additions & 2 deletions plugins/plugin_utils/compat/telnetlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@
"""


import selectors
import socket

# Imported modules
import sys
import socket
import selectors
from time import monotonic as _time

from ansible.utils.display import Display
Expand Down

0 comments on commit 89a5c14

Please sign in to comment.