Skip to content

Commit a1038dc

Browse files
committed
[base] Rename baseobject to BaseObject
1 parent cd3301b commit a1038dc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

odml/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .tools.doc_inherit import allow_inherit_docstring
1010

1111

12-
class baseobject(object):
12+
class BaseObject(object):
1313
_format = None
1414

1515
def format(self):
@@ -160,7 +160,7 @@ def append(self, *obj_tuple):
160160

161161

162162
@allow_inherit_docstring
163-
class sectionable(baseobject):
163+
class sectionable(BaseObject):
164164
def __init__(self):
165165
from odml.section import BaseSection
166166
self._sections = SmartList(BaseSection)

odml/property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
@allow_inherit_docstring
12-
class BaseProperty(base.baseobject):
12+
class BaseProperty(base.BaseObject):
1313
"""An odML Property"""
1414
_format = frmt.Property
1515

0 commit comments

Comments
 (0)