summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/server.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-21 15:14:38 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-21 15:14:38 +0200
commit792fb9e5ad24fea16753fa9b9c25e0f4436e2c10 (patch)
tree67649c03f309fda4e7fc21bf4ff46f6f6fc05bdb /wrappers/python/eduvpn_common/server.py
parent8fa80e56e014d9a77cfb337b2a2b641f1532ff8e (diff)
Python: Fix meta docstring format
Diffstat (limited to 'wrappers/python/eduvpn_common/server.py')
-rw-r--r--wrappers/python/eduvpn_common/server.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/wrappers/python/eduvpn_common/server.py b/wrappers/python/eduvpn_common/server.py
index 686114b..fc5711e 100644
--- a/wrappers/python/eduvpn_common/server.py
+++ b/wrappers/python/eduvpn_common/server.py
@@ -160,7 +160,7 @@ def get_profiles(ptr) -> Optional[Profiles]:
:param ptr: The pointer to the Profiles as returned by the Go library
- :meta: private:
+ :meta private:
:return: Profiles if there are any
:rtype: Optional[Profiles]
@@ -192,7 +192,7 @@ def get_server(ptr, _type: Optional[str] = None) -> Optional[Server]:
:param ptr: The pointer as returned by the Go library
:param _type: (Default value = None): The optional parameter that represents whether or not the type is enforced to the input. If None it is automatically determined
- :meta: private:
+ :meta private:
:return: Server if there is any
:rtype: Optional[Server]
@@ -240,7 +240,7 @@ def get_transition_server(lib: CDLL, ptr: c_void_p) -> Optional[Server]:
:param lib: CDLL: The Go shared library
:param ptr: c_void_p: The Go's returned C pointer that represents the Server
- :meta: private:
+ :meta private:
:return: The server if there is any
:rtype: Optional[Server]
@@ -256,7 +256,7 @@ def get_transition_profiles(lib: CDLL, ptr: c_void_p) -> Optional[Profiles]:
:param lib: CDLL: The Go shared library
:param ptr: c_void_p: The Go's returned C pointer that represents the profiles
- :meta: private:
+ :meta private:
:return: The profiles if there is any
:rtype: Optional[Profiles]
@@ -272,7 +272,7 @@ def get_servers(lib: CDLL, ptr: c_void_p) -> Optional[List[Server]]:
:param lib: CDLL: The Go shared library
:param ptr: c_void_p: The C pointer to the servers structure
- :meta: private:
+ :meta private:
:return: The list of Servers if there is any
:rtype: Optional[List[Server]]
@@ -309,7 +309,7 @@ def get_locations(lib: CDLL, ptr: c_void_p) -> Optional[List[str]]:
:param lib: CDLL: The Go shared library
:param ptr: c_void_p: The C pointer to the locations structure
- :meta: private:
+ :meta private:
:return: The list of servers if there are any
:rtype: Optional[List[str]]