docs: docstring change
This commit is contained in:
parent
95dd8465bd
commit
7c6219924e
1 changed files with 4 additions and 4 deletions
|
@ -12,10 +12,10 @@ class ZiplineApi:
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
hostname (str): The hostname of your Zipline instance, WITHOUT https or http.
|
hostname (str): The hostname of your Zipline instance, WITHOUT https or http.
|
||||||
token (str = None): String used for authentication when making requests.
|
token (str): String used for authentication when making requests.
|
||||||
ssl (bool = True): Normally set to True, but if your Zipline instance doesn't use SSL/TLS, set this to False.
|
ssl (bool): Normally set to True, but if your Zipline instance doesn't use SSL/TLS, set this to False.
|
||||||
enforced_signing (bool = True): Normally set to True, but if having SSL/TLS cert validation issues, can turn off with False.
|
enforced_signing (bool): Normally set to True, but if having SSL/TLS cert validation issues, can turn off with False.
|
||||||
logger (logging.Logger = None): If your app has a logger, pass it in here.
|
logger (logging.Logger): If your app has a logger, pass it in here.
|
||||||
"""
|
"""
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
|
|
Loading…
Reference in a new issue