Changeset - f99bd2c57c77
[Not reviewed]
default
0 1 0
Dennis Fink - 11 years ago 2014-07-13 16:43:34
dennis.fink@c3l.lu
remove uncommitted function imports
1 file changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
ennstatus/stats/views.py
Show inline comments
 
from flask import (Blueprint, render_template, request, current_app,
 
                   redirect, url_for)
 

	
 
from ennstatus.stats.functions import (make_worldmap, make_total_pie,
 
                                       make_type_pie)
 
from ennstatus.stats.forms import (WorldmapStyleForm)
 
from ennstatus.stats.functions import make_worldmap
 
from ennstatus.stats.forms import WorldmapStyleForm
 

	
 
stats_page = Blueprint('stats', __name__)
 

	
0 comments (0 inline, 0 general)