Source code for nerodia.elements.table_data_cell

import six

from .table_cell import TableCell
from ..meta_elements import MetaHTMLElement


[docs]@six.add_metaclass(MetaHTMLElement) class TableDataCell(TableCell): _attr_abbr = (str, 'abbr') pass