Spaces:
Runtime error
Runtime error
from abc import ABC, abstractmethod | |
from PIL import Image | |
class ControlInterface(ABC): | |
def get_control_image( | |
self, | |
image: Image, | |
) -> Image: | |
pass | |