Module pandas_profiling.report.presentation.flavours.html.warnings
Expand source code
from pandas_profiling.report.presentation.core.warnings import Warnings
from pandas_profiling.report.presentation.flavours.html import templates
class HTMLWarnings(Warnings):
def render(self):
return templates.template("warnings.html").render(**self.content)
Classes
class HTMLWarnings (warnings, **kwargs)
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class HTMLWarnings(Warnings): def render(self): return templates.template("warnings.html").render(**self.content)
Ancestors
- Warnings
- ItemRenderer
- Renderable
- abc.ABC
Methods
def render(self)
-
Expand source code
def render(self): return templates.template("warnings.html").render(**self.content)