Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
vthiebaut10 committed Jul 17, 2024
1 parent fabb502 commit b59bff6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ssh/azext_ssh/rdp_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ def call_rdp(local_port):
command = [_get_rdp_path(), f"/v:localhost:{local_port}"]
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# process.wait() doesn't work correctly when 32bit python is installed on 64bit machines
_= process.communicate()

_ = process.communicate()


def is_local_port_open(local_port):
Expand Down

0 comments on commit b59bff6

Please sign in to comment.