1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

remove from blah import *

This commit is contained in:
Feth AREZKI 2012-03-06 22:13:47 +01:00
parent 9583fe3cbe
commit e22ee5dfd2

View file

@ -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")