Skip to content

Commit

Permalink
[py3, test] section pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrewe committed Oct 19, 2016
1 parent cddaa1c commit 6063663
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions odml/section.py
Expand Up @@ -7,18 +7,19 @@
# it MUST however not be used to create any Property objects
from odml.tools.doc_inherit import inherit_docstring, allow_inherit_docstring


class Section(base._baseobj):
pass

@allow_inherit_docstring
class BaseSection(base.sectionable, mapping.mapableSection, Section):
"""An odML Section"""
type = None
id = None
_link = None
_include = None
_mapping = None
reference = None # the *import* property
type = None
id = None
_link = None
_include = None
_mapping = None
reference = None # the *import* property

_merged = None

Expand Down

0 comments on commit 6063663

Please sign in to comment.