mirror of https://github.com/MISP/PyMISP
fix: fixes bug in timeout change
parent
12f8fd8530
commit
f3b3f4c13c
|
@ -92,7 +92,7 @@ class PyMISP:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, url: str, key: str, ssl: bool=True, debug: bool=False, proxies: Mapping={},
|
def __init__(self, url: str, key: str, ssl: bool=True, debug: bool=False, proxies: Mapping={},
|
||||||
cert: Tuple[str, tuple]=None, auth: AuthBase=None, tool: str='', timeout: Union[float, Tuple[float, float], None]=None):
|
cert: Tuple[str, tuple]=None, auth: AuthBase=None, tool: str='', timeout: Optional[float, Tuple[float, float]]=None):
|
||||||
if not url:
|
if not url:
|
||||||
raise NoURL('Please provide the URL of your MISP instance.')
|
raise NoURL('Please provide the URL of your MISP instance.')
|
||||||
if not key:
|
if not key:
|
||||||
|
@ -105,7 +105,7 @@ class PyMISP:
|
||||||
self.cert: Optional[Tuple[str, tuple]] = cert
|
self.cert: Optional[Tuple[str, tuple]] = cert
|
||||||
self.auth: Optional[AuthBase] = auth
|
self.auth: Optional[AuthBase] = auth
|
||||||
self.tool: str = tool
|
self.tool: str = tool
|
||||||
self.timeout: Optional[Union[float, Tuple[float, float], None]] = timeout
|
self.timeout: Optional[float, Tuple[float, float]]] = timeout
|
||||||
|
|
||||||
self.global_pythonify = False
|
self.global_pythonify = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue