Skip to content

Commit d80c333

Browse files
committed
apidocs: fix help for logs
1 parent 9e890ed commit d80c333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/warnet/control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ def run(scenario_file: str, debug: bool, additional_args: tuple[str]):
250250
@click.argument("pod_name", type=str, default="")
251251
@click.option("--follow", "-f", is_flag=True, default=False, help="Follow logs")
252252
def logs(pod_name: str, follow: bool):
253+
"""Show the logs of a pod"""
253254
return _logs(pod_name, follow)
254255

255256

256257
def _logs(pod_name: str, follow: bool):
257-
"""Show the logs of a pod"""
258258
namespace = get_default_namespace()
259259

260260
if pod_name == "":

0 commit comments

Comments
 (0)