From 1b048e1952192ac489405add0ac95bdf41bf21d2 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 22 Apr 2023 17:18:19 +0200 Subject: [PATCH] s/net_connections/network_connections/g --- platypush/plugins/system/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/plugins/system/__init__.py b/platypush/plugins/system/__init__.py index 053435b2..9d0e3101 100644 --- a/platypush/plugins/system/__init__.py +++ b/platypush/plugins/system/__init__.py @@ -300,7 +300,7 @@ class SystemPlugin(SensorPlugin, EntityManager): return NetworkInterfaceSchema().dump(self._network_info_avg()) @action - def net_connections(self, type: str = 'inet') -> List[dict]: + def network_connections(self, type: str = 'inet') -> List[dict]: """ Get the list of active network connections. On MacOS this function requires root privileges.