Changeset - 751341c267ed
[Not reviewed]
0 1 0
Joar Wandborg - 10 years ago 2013-12-17 13:11:29
joar@wandborg.se
[storage] Added add_transaction abstract method
1 file changed with 4 insertions and 0 deletions:
0 comments (0 inline, 0 general)
accounting/storage/__init__.py
Show inline comments
...
 
@@ -26,6 +26,10 @@ class Storage():
 
    def get_accounts(self, *args, **kw):
 
        raise NotImplementedError
 

	
 
    @abstractmethod
 
    def add_transaction(self, transaction):
 
        raise NotImplementedError
 

	
 
    @abstractmethod
 
    def update_transaction(self, transaction):
 
        raise NotImplementedError
0 comments (0 inline, 0 general)