Skip to content

Commit

Permalink
removed problematic call to super().to_dict()
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Worrell committed Aug 13, 2013
1 parent 2db2a65 commit 5201f9e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions stix/extensions/identity/ciq_identity_3_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ def from_dict(cls, dict_repr, return_obj=None):
def to_dict(self, return_dict=None):
if not return_dict:
return_dict = {}

super(STIXCIQIdentity3_0, self).to_dict(return_dict)

if self.party_name:
return_dict['party_name'] = self.party_name.to_dict()

Expand Down

0 comments on commit 5201f9e

Please sign in to comment.