Skip to content

Commit 33c0b5c

Browse files
committed
Fix TTPs type in Report
1 parent 4fa18e0 commit 33c0b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stix/report/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Report(Cached, stix.Entity):
7171
indicators = fields.TypedField("Indicators", type_="stix.report.Indicators")
7272
incidents = fields.TypedField("Incidents", type_="stix.report.Incidents")
7373
threat_actors = fields.TypedField("Threat_Actors", type_="stix.report.ThreatActors")
74-
ttps = fields.TypedField("TTPs", type_="stix.report.TTPs")
74+
ttps = fields.TypedField("TTPs", type_="stix.core.ttps.TTPs")
7575
related_reports = fields.TypedField("Related_Reports", type_="stix.report.RelatedReports")
7676

7777
def __init__(self, id_=None, idref=None, timestamp=None, header=None,

0 commit comments

Comments
 (0)