Skip to content

Commit

Permalink
[client] Update x_opencti_graph_data
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Hassine committed Aug 15, 2021
1 parent 88b958e commit d008b33
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pycti/entities/opencti_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ def create(self, **kwargs):
description = kwargs.get("description", "")
report_types = kwargs.get("report_types", None)
published = kwargs.get("published", None)
x_opencti_graph_data = kwargs.get("x_opencti_graph_data", None)
x_opencti_report_status = kwargs.get("x_opencti_report_status", None)
x_opencti_stix_ids = kwargs.get("x_opencti_stix_ids", None)
update = kwargs.get("update", False)
Expand Down Expand Up @@ -434,7 +433,6 @@ def create(self, **kwargs):
"description": description,
"report_types": report_types,
"published": published,
"x_opencti_graph_data": x_opencti_graph_data,
"x_opencti_report_status": x_opencti_report_status,
"x_opencti_stix_ids": x_opencti_stix_ids,
"update": update,
Expand Down Expand Up @@ -610,9 +608,6 @@ def import_from_stix2(self, **kwargs):
published=stix_object["published"]
if "published" in stix_object
else None,
x_opencti_graph_data=stix_object["x_opencti_graph_data"]
if "x_opencti_graph_data" in stix_object
else None,
x_opencti_report_status=stix_object["x_opencti_report_status"]
if "x_opencti_report_status" in stix_object
else None,
Expand Down

0 comments on commit d008b33

Please sign in to comment.