diff --git a/etcd3_wrapper/etcd3_wrapper.py b/etcd3_wrapper/etcd3_wrapper.py index fa9f285..0814b61 100755 --- a/etcd3_wrapper/etcd3_wrapper.py +++ b/etcd3_wrapper/etcd3_wrapper.py @@ -22,7 +22,7 @@ class Etcd3Wrapper: def __init__(self, *args, **kwargs): self.client = etcd3.client(*args, **kwargs) - def get(self, *args, value_in_json=False, **kwargs) -> Union[EtcdEntry, None]: + def get(self, *args, value_in_json=False, **kwargs): _value, _key = self.client.get(*args, **kwargs) if _key is None or _value is None: return None