Spaces:
Runtime error
Runtime error
from abc import ABC, abstractmethod | |
class ParserInterface(ABC): | |
def parse(file_path) -> str: | |
pass | |
from abc import ABC, abstractmethod | |
class ParserInterface(ABC): | |
def parse(file_path) -> str: | |
pass | |