Skip to content

Commit 8c45e40

Browse files
committed
[client] wip inferred in bundle task manager
1 parent a69e368 commit 8c45e40

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

pycti/api/opencti_api_inferred.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ def __init__(self, api):
66

77
def create_inferred_rel(self, **kwargs):
88
input = kwargs.get("input", None)
9-
self.api.app_logger.info(
10-
"Creating inferred rel", {"input": input}
11-
)
9+
self.api.app_logger.info("Creating inferred rel", {"input": input})
1210
query = """
1311
mutation inferredRelationAdd($jsonInput: String!) {
1412
inferredRelationAdd(jsonInput: $jsonInput)
@@ -18,9 +16,7 @@ def create_inferred_rel(self, **kwargs):
1816

1917
def create_inferred_entity(self, **kwargs):
2018
input = kwargs.get("input", None)
21-
self.api.app_logger.info(
22-
"Creating inferred rel", {"input": input}
23-
)
19+
self.api.app_logger.info("Creating inferred rel", {"input": input})
2420
query = """
2521
mutation inferredRelationAdd($jsonInput: String!) {
2622
inferredRelationAdd(jsonInput: $jsonInput)

0 commit comments

Comments
 (0)