Skip to content

Commit 5201f9e

Browse files
author
Bryan Worrell
committed
removed problematic call to super().to_dict()
1 parent 2db2a65 commit 5201f9e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stix/extensions/identity/ciq_identity_3_0.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,7 @@ def from_dict(cls, dict_repr, return_obj=None):
199199
def to_dict(self, return_dict=None):
200200
if not return_dict:
201201
return_dict = {}
202-
203-
super(STIXCIQIdentity3_0, self).to_dict(return_dict)
202+
204203
if self.party_name:
205204
return_dict['party_name'] = self.party_name.to_dict()
206205

0 commit comments

Comments
 (0)