Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

index.py: Apply pep8 standard #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
from flask import Flask, request, redirect, url_for, render_template, flash
from werkzeug.utils import secure_filename
from app import app, server
from apps import home, crop_wise_output, gva_sectors, agg_national_accounts, gva_time_series, agg_eco_activities, \
cfc_sectors, nv_eco, cfc_time_series, nv_time_series, household, gcf_sectors, gcf_time_series
from apps import (home, crop_wise_output, gva_sectors, agg_national_accounts,
gva_time_series, agg_eco_activities, cfc_sectors, nv_eco,
cfc_time_series, nv_time_series, household, gcf_sectors,
gcf_time_series)
from apps.admin import requires_auth

UPLOAD_FOLDER = 'data/uploads'
Expand Down