jeffeux's picture
Add application file
21e639d
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