diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-21 15:14:38 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-21 15:14:38 +0200 |
| commit | 792fb9e5ad24fea16753fa9b9c25e0f4436e2c10 (patch) | |
| tree | 67649c03f309fda4e7fc21bf4ff46f6f6fc05bdb /wrappers/python/eduvpn_common/main.py | |
| parent | 8fa80e56e014d9a77cfb337b2a2b641f1532ff8e (diff) | |
Python: Fix meta docstring format
Diffstat (limited to 'wrappers/python/eduvpn_common/main.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/main.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wrappers/python/eduvpn_common/main.py b/wrappers/python/eduvpn_common/main.py index 03e5b4c..69d00db 100644 --- a/wrappers/python/eduvpn_common/main.py +++ b/wrappers/python/eduvpn_common/main.py @@ -226,7 +226,7 @@ class EduVPN(object): :param func: Any: The Go function to call :param prefer_tcp: bool: (Default value = False): Whether or not to prefer TCP - :meta: private: + :meta private: :raises WrappedError: An error by the Go library @@ -487,7 +487,7 @@ def state_callback(name: bytes, old_state: int, new_state: int, data: Any) -> No :param new_state: int: The new state :param data: Any: The data that still needs to be converted - :meta: private: + :meta private: """ name_decoded = name.decode() if name_decoded not in eduvpn_objects: @@ -500,7 +500,7 @@ def add_as_global_object(eduvpn: EduVPN) -> bool: :param eduvpn: EduVPN: The class to add - :meta: private: + :meta private: :return: Whether or not the object was added :rtype: bool @@ -517,7 +517,7 @@ def remove_as_global_object(eduvpn: EduVPN) -> None: :param eduvpn: EduVPN: The class to remove - :meta: private: + :meta private: """ global eduvpn_objects eduvpn_objects.pop(eduvpn.name, None) |
