Skip to content

Commit a7d9e48

Browse files
committed
fix: typo in docstring
1 parent e1b8410 commit a7d9e48

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

juju/machine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ async def ssh(
172172
return stdout.decode()
173173

174174
async def wait(self, timeout: int = 300) -> None:
175-
"""Waits until the machie is ready to take ssh/scp commands.
175+
"""Waits until the machine is ready to take ssh/scp commands.
176176
177-
:param int timeout: Timeout in seconds to wait for.
177+
:param int timeout: Timeout in seconds.
178178
"""
179179
await block_until(lambda: self.safe_data["addresses"] and
180180
self.agent_status == "started", timeout=timeout)

0 commit comments

Comments
 (0)