Skip to content

Commit ff10810

Browse files
committed
style: add trailing comma for consistency
1 parent 038dd29 commit ff10810

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nanokvm/ssh_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async def authenticate(self, password: str) -> None:
5353
username=self.username,
5454
password=password,
5555
timeout=10,
56-
)
56+
),
5757
)
5858
except paramiko.AuthenticationException as e:
5959
raise NanoKVMSSHAuthenticationError(

0 commit comments

Comments
 (0)