lowannann's picture
2022_1013
4398510
raw
history blame contribute delete
275 Bytes
from abc import ABC, abstractmethod
class Block(ABC):
"""
The Block object defines the behaviour for creating a display block.
"""
@abstractmethod
def visualize(self):
"""The visualize method visualizes the streamlit component."""
pass