Skip to content

Commit e1b8410

Browse files
committed
fix: lint
1 parent 0dc32a5 commit e1b8410

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

juju/machine.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ async def ssh(
171171
# stdout is a bytes-like object, returning a string might be more useful
172172
return stdout.decode()
173173

174-
async def wait(self, timeout: int=300) -> None:
174+
async def wait(self, timeout: int = 300) -> None:
175175
"""Waits until the machie is ready to take ssh/scp commands.
176-
176+
177177
:param int timeout: Timeout in seconds to wait for.
178178
"""
179-
await block_until(lambda: self.safe_data["addresses"] and
179+
await block_until(lambda: self.safe_data["addresses"] and
180180
self.agent_status == "started", timeout=timeout)
181181

182182
@property

0 commit comments

Comments
 (0)