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.
10 lines
196 B
Python
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
|