Skip to content

Typo in cybox/common/properties.py #19

@gleeda

Description

@gleeda

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions