Skip to content

Commit 0c6acd7

Browse files
committed
Linting: add missing trailing commas.
1 parent a2f87ad commit 0c6acd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyinfra/api/connectors/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def run_shell_command(
6565

6666
if use_sudo_password:
6767
command_kwargs['use_sudo_password'] = get_sudo_password(
68-
host, use_sudo_password
68+
host, use_sudo_password,
6969
)
7070

7171
def execute_command():

pyinfra/api/connectors/ssh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def run_shell_command(
271271

272272
if use_sudo_password:
273273
command_kwargs['use_sudo_password'] = get_sudo_password(
274-
host, use_sudo_password
274+
host, use_sudo_password,
275275
)
276276

277277
def execute_command():

0 commit comments

Comments
 (0)