Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 583b930

Browse files
author
Samuel Hassine
committed
[client] Clean formating
1 parent 833fe1e commit 583b930

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pycti/connector/opencti_connector_helper.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,9 @@ def __init__(self, config: dict):
351351
)
352352

353353
# Configure logger
354-
numeric_level = getattr(logging, self.log_level.upper() if self.log_level else "INFO", None)
354+
numeric_level = getattr(
355+
logging, self.log_level.upper() if self.log_level else "INFO", None
356+
)
355357
if not isinstance(numeric_level, int):
356358
raise ValueError("Invalid log level: " + self.log_level)
357359
logging.basicConfig(level=numeric_level)

0 commit comments

Comments
 (0)