budget/pfbudget/input/input.py
Luís Murta 9b45ee4817
Update the export operation
to work with the Manager.
Also removes the run method from the runnable.py, since everything is
done in the __main__.py file of the pfbudget module.
2023-01-08 19:41:07 +00:00

10 lines
196 B
Python

from abc import ABC, abstractmethod
from pfbudget.db.model import Transaction
class Input(ABC):
@abstractmethod
def parse(self) -> list[Transaction]:
return NotImplementedError