We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c013cb4 commit 7998689Copy full SHA for 7998689
1 file changed
odml/doc.py
@@ -8,6 +8,7 @@
8
from . import dtypes
9
from . import format as fmt
10
from . import terminology
11
+from . import validation
12
from .tools.doc_inherit import inherit_docstring, allow_inherit_docstring
13
14
@@ -152,6 +153,14 @@ def finalize(self):
152
153
if sec._include is not None:
154
sec.include = sec._include
155
156
+ def validate(self):
157
+ """
158
+ Runs a validation on itself and returns the Validation object.
159
+
160
+ :return: odml.Validation
161
162
+ return validation.Validation(self)
163
164
@inherit_docstring
165
def get_terminology_equivalent(self):
166
if self.repository is None:
0 commit comments