Merge pull request #257 from vioan/master

Fixed an import error
This commit is contained in:
Konsta Vesterinen
2016-11-23 19:40:22 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -317,6 +317,7 @@ class PropertyObserver(object):
for callback, objs in callback_objs.items():
callback(root_obj, *[objs[i] for i in range(len(objs))])
observer = PropertyObserver()

View File

@@ -32,7 +32,7 @@ Usage
from collections import OrderedDict
import sqlalchemy as sa
from sqlalchemy_utils import Composite, CurrencyType
from sqlalchemy_utils import CompositeType, CurrencyType
class Account(Base):