diff options
| author | Feth AREZKI <feth@tuttu.info> | 2012-03-06 22:13:47 +0100 |
|---|---|---|
| committer | Feth AREZKI <feth@tuttu.info> | 2012-03-06 22:13:47 +0100 |
| commit | e22ee5dfd21d97802dc55ddc9f44d905dfc4cd67 (patch) | |
| tree | 23775f11960f5ee36541b8c51ddb5c707b8fe762 /budget/api.py | |
| parent | 9583fe3cbe938dc2927b2d2a32d8ffdb768b148b (diff) | |
| download | ihatemoney-mirror-e22ee5dfd21d97802dc55ddc9f44d905dfc4cd67.zip ihatemoney-mirror-e22ee5dfd21d97802dc55ddc9f44d905dfc4cd67.tar.gz ihatemoney-mirror-e22ee5dfd21d97802dc55ddc9f44d905dfc4cd67.tar.bz2 | |
remove from blah import *
Diffstat (limited to 'budget/api.py')
| -rw-r--r-- | budget/api.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/budget/api.py b/budget/api.py index 4ca04f2..ec664b6 100644 --- a/budget/api.py +++ b/budget/api.py @@ -1,13 +1,10 @@ # -*- coding: utf-8 -*- -from flask import * +from flask import Blueprint, request +from flask_rest import RESTResource, need_auth from models import db, Project, Person, Bill -from forms import (ProjectForm, EditProjectForm, MemberForm, BillForm, +from forms import (ProjectForm, EditProjectForm, MemberForm, get_billform_for) -from utils import for_all_methods - -from flask_rest import RESTResource, need_auth -from werkzeug import Response api = Blueprint("api", __name__, url_prefix="/api") |
