We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3301b commit a1038dcCopy full SHA for a1038dc
2 files changed
odml/base.py
@@ -9,7 +9,7 @@
9
from .tools.doc_inherit import allow_inherit_docstring
10
11
12
-class baseobject(object):
+class BaseObject(object):
13
_format = None
14
15
def format(self):
@@ -160,7 +160,7 @@ def append(self, *obj_tuple):
160
161
162
@allow_inherit_docstring
163
-class sectionable(baseobject):
+class sectionable(BaseObject):
164
def __init__(self):
165
from odml.section import BaseSection
166
self._sections = SmartList(BaseSection)
odml/property.py
-class BaseProperty(base.baseobject):
+class BaseProperty(base.BaseObject):
"""An odML Property"""
_format = frmt.Property
0 commit comments