Skip to content

Commit f4cb704

Browse files
Apply black formatting
1 parent bdd82f4 commit f4cb704

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

miniupdate/host_checker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ def wait_for_host_availability(
6767
True if host becomes available, False if timeout
6868
"""
6969
logger.info(
70-
"Waiting for %s to become available (timeout: %ss)", host.name, max_wait_time
70+
"Waiting for %s to become available (timeout: %ss)",
71+
host.name,
72+
max_wait_time,
7173
)
7274

7375
start_time = time.time()

miniupdate/proxmox_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ def authenticate(self) -> bool:
8383
self.session.headers.update({"CSRFPreventionToken": self.csrf_token})
8484
self.session.cookies.set("PVEAuthCookie", self.ticket)
8585

86-
logger.info("Successfully authenticated to Proxmox at %s", self.endpoint)
86+
logger.info(
87+
"Successfully authenticated to Proxmox at %s", self.endpoint
88+
)
8789
return True
8890
logger.error(
8991
"Authentication failed: %s - %s", response.status_code, response.text

0 commit comments

Comments
 (0)