-
Notifications
You must be signed in to change notification settings - Fork 42
Closed
Description
Noticed a typo:
diff --git a/cybox/common/properties.py b/cybox/common/properties.py
index 226c24e..ce15784 100644
--- a/cybox/common/properties.py
+++ b/cybox/common/properties.py
@@ -332,7 +332,7 @@ class PositiveInteger(BaseProperty):
class UnsignedInteger(BaseProperty):
def __init__(self, *args, **kwargs):
- BaseProeprty.__init__(self, *args, **kwargs)
+ BaseProperty.__init__(self, *args, **kwargs)
self.datatype = "unsignedInt"
def _get_binding_class(self):
@@ -340,7 +340,7 @@ class UnsignedInteger(BaseProperty):
class NonNegativeInteger(BaseProperty):
def __init__(self, *args, **kwargs):
- BaseProeprty.__init__(self, *args, **kwargs)
+ BaseProperty.__init__(self, *args, **kwargs)
self.datatype = "nonNegativeInteger"
def _get_binding_class(self):
Metadata
Metadata
Assignees
Labels
No labels