Spaces:
Build error
Build error
from abc import ABC,abstractmethod | |
from numpy import ndarray | |
from PIL import Image | |
class SengaFiller(ABC): | |
def run(image:Image.Image)->ndarray: | |
pass |