From 680de865c498d2d6dd27fdaad60cd7090fe8c9a3 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 4 Dec 2023 03:09:02 +0100 Subject: [PATCH] Minor docstring fix. --- platypush/plugins/ping/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platypush/plugins/ping/__init__.py b/platypush/plugins/ping/__init__.py index d42fabc6..285f4645 100644 --- a/platypush/plugins/ping/__init__.py +++ b/platypush/plugins/ping/__init__.py @@ -87,9 +87,8 @@ class PingPlugin(RunnablePlugin, EntityManager): """ This integration allows you to: - 1. Programmatic ping a remote host. - 2. Monitor the status of a remote host. - + - Programmatic ping a remote host. + - Monitor the status of a remote host. """ def __init__( @@ -143,6 +142,7 @@ class PingPlugin(RunnablePlugin, EntityManager): ) -> dict: """ Ping a remote host. + :param host: Remote host IP or name :param count: Overrides the configured number of packets that should be sent (default: 1).