From 9a0cb02ab32dcb3008861fd2275d149f87c9ede0 Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Tue, 30 Jun 2020 13:58:19 -0400 Subject: [PATCH] nit-pick on v21 Indicator constructor --- stix2/v21/sdo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/v21/sdo.py b/stix2/v21/sdo.py index 9418c40..decbf07 100644 --- a/stix2/v21/sdo.py +++ b/stix2/v21/sdo.py @@ -204,7 +204,7 @@ class Indicator(_DomainObject): if kwargs.get('pattern') and kwargs.get('pattern_type') == 'stix' and not kwargs.get('pattern_version'): kwargs['pattern_version'] = '2.1' - super(_DomainObject, self).__init__(*args, **kwargs) + super(Indicator, self).__init__(*args, **kwargs) def _check_object_constraints(self): super(Indicator, self)._check_object_constraints()