diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-01 14:06:59 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-01 14:06:59 +0100 |
| commit | a073eb005aeebd5f5156763e0677d39db32b2817 (patch) | |
| tree | aa80ba6523e10785019d854d982297235fda143e /wrappers | |
| parent | e4d265cd38ef94cff5765009c7c5e022b328939e (diff) | |
Python: Fix type annotation for Disco Organization
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/python/eduvpn_common/discovery.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/discovery.py b/wrappers/python/eduvpn_common/discovery.py index 732283a..01f6e13 100644 --- a/wrappers/python/eduvpn_common/discovery.py +++ b/wrappers/python/eduvpn_common/discovery.py @@ -31,7 +31,7 @@ class DiscoOrganizations: Additionally it has provided a version which indicates which exact 'version' was used from discovery :param: version: int: The version of the list as returned by Discovery - :param: organizations: List[DiscoOrganizations]: The actual list of discovery organizations + :param: organizations: List[DiscoOrganization]: The actual list of discovery organizations """ def __init__(self, version: int, organizations: List[DiscoOrganization]): self.version = version |
