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:
parent
9583fe3cbe
commit
e22ee5dfd2
1 changed files with 3 additions and 6 deletions
|
@ -1,13 +1,10 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- 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 models import db, Project, Person, Bill
|
||||||
from forms import (ProjectForm, EditProjectForm, MemberForm, BillForm,
|
from forms import (ProjectForm, EditProjectForm, MemberForm,
|
||||||
get_billform_for)
|
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")
|
api = Blueprint("api", __name__, url_prefix="/api")
|
||||||
|
|
Loading…
Add table
Reference in a new issue