Spaces:
Runtime error
Runtime error
File size: 215 Bytes
71e7dd8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from abc import ABC, abstractmethod
from dataclasses import dataclass
import pandas as pd
@dataclass
class DocumentsManager(ABC):
@abstractmethod
def add(self, source: str, df: pd.DataFrame):
...
|