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

Commit d008b33

Browse files
author
Samuel Hassine
committed
[client] Update x_opencti_graph_data
1 parent 88b958e commit d008b33

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pycti/entities/opencti_report.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,6 @@ def create(self, **kwargs):
399399
description = kwargs.get("description", "")
400400
report_types = kwargs.get("report_types", None)
401401
published = kwargs.get("published", None)
402-
x_opencti_graph_data = kwargs.get("x_opencti_graph_data", None)
403402
x_opencti_report_status = kwargs.get("x_opencti_report_status", None)
404403
x_opencti_stix_ids = kwargs.get("x_opencti_stix_ids", None)
405404
update = kwargs.get("update", False)
@@ -434,7 +433,6 @@ def create(self, **kwargs):
434433
"description": description,
435434
"report_types": report_types,
436435
"published": published,
437-
"x_opencti_graph_data": x_opencti_graph_data,
438436
"x_opencti_report_status": x_opencti_report_status,
439437
"x_opencti_stix_ids": x_opencti_stix_ids,
440438
"update": update,
@@ -610,9 +608,6 @@ def import_from_stix2(self, **kwargs):
610608
published=stix_object["published"]
611609
if "published" in stix_object
612610
else None,
613-
x_opencti_graph_data=stix_object["x_opencti_graph_data"]
614-
if "x_opencti_graph_data" in stix_object
615-
else None,
616611
x_opencti_report_status=stix_object["x_opencti_report_status"]
617612
if "x_opencti_report_status" in stix_object
618613
else None,

0 commit comments

Comments
 (0)