Source code for q2_sdk.hq.db.representation_row_base

[docs] class RepresentationRowBase: """Base class to inherit from when defining a table schema for a ``DBObject``""" def __contains__(self, _): # for static analysis return False
[docs] class BaseFormRow(RepresentationRowBase): """ Base class to inherit from when defining a table schema for a 'form' like ``DBObject`` """