Spaces:
Runtime error
Runtime error
| from abc import ABC, abstractmethod | |
| import gradio as gr | |
| from data_measurements.dataset_statistics import DatasetStatisticsCacheClass as dmt_cls | |
| class Widget(ABC): | |
| def render(self): | |
| pass | |
| def update(self, dstats: dmt_cls): | |
| pass | |
| def output_components(self): | |
| pass | |
| def add_events(self, state: gr.State): | |
| pass | |