Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update API Bootstrapping code style #794

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions pycti/api/opencti_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ def __init__(
self.ssl_verify = ssl_verify
self.cert = cert
self.proxies = proxies
if url is None or len(url) == 0:
if not url:
raise ValueError("An URL must be set")
if token is None or len(token) == 0 or token == "ChangeMe":
if not token or token == "ChangeMe":
raise ValueError("A TOKEN must be set")

# Configure logger
Expand All @@ -137,11 +137,9 @@ def __init__(
"Authorization": "Bearer " + token,
}

if auth is not None:
self.session = requests.session()
self.session = requests.session()
if auth:
self.session.auth = auth
else:
self.session = requests.session()

# Define the dependencies
self.work = OpenCTIApiWork(self)
Expand Down
Loading