diff options
-rw-r--r-- | fietsboek/models/track.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fietsboek/models/track.py b/fietsboek/models/track.py index 5d80681..0921437 100644 --- a/fietsboek/models/track.py +++ b/fietsboek/models/track.py @@ -61,6 +61,7 @@ LOGGER = logging.getLogger(__name__) class JsonText(sqlalchemy.types.TypeDecorator): """Saves objects serialized as JSON but keeps the column as a Text.""" + # This is straight from the SQLAlchemy documentation, so the non-overriden # methods should be fine. # pylint: disable=too-many-ancestors,abstract-method |