Removed unused imports.

This commit is contained in:
Alexis Lahouze 2013-01-24 13:31:42 +01:00
parent f83f700bd2
commit 48262fbcc8
2 changed files with 0 additions and 4 deletions

View File

@ -1,8 +1,6 @@
from app import app
from app import db
from collections import OrderedDict
class Account(db.Model):
id = db.Column(db.Integer, primary_key = True)
name = db.Column(db.String(200), nullable = False)

View File

@ -7,8 +7,6 @@ from sqlalchemy import func, desc
from sqlalchemy.orm import column_property
from sqlalchemy.sql import func, select
from collections import OrderedDict
class Entry(db.Model):
id = db.Column(db.Integer, primary_key=True)
value_date = db.Column(db.Date, nullable = False)