feat: PEP 8 formatting

This commit is contained in:
Nicholas C 2023-03-09 22:06:54 +11:00
parent 0dbdc5189d
commit 078968ddc4
2 changed files with 7 additions and 6 deletions

View File

@ -21,7 +21,6 @@ Hangouts Chat bot that responds to events and messages from a room asynchronousl
import logging
from os import environ
from flask import Blueprint, render_template, request, json
from google.oauth2 import service_account
@ -31,7 +30,6 @@ logging.basicConfig(filename='example.log', level=logging.DEBUG)
chatbot = Blueprint('chatbot', __name__)
scopes = ['https://www.googleapis.com/auth/chat.bot']
credentials = service_account.Credentials.from_service_account_file('./priceybot2/config/service-acct.json')
# credentials, project_id = google.auth.default()
@ -132,5 +130,3 @@ def home_get():
"""
return render_template('home.html')

View File

@ -1,9 +1,9 @@
from flask import Blueprint, render_template
from flask_login import login_required, current_user
from . import db
main = Blueprint('main', __name__)
@main.route('/')
def index():
return render_template('index.html')
@ -12,4 +12,9 @@ def index():
@main.route('/profile')
@login_required
def profile():
return render_template('profile.html', name=current_user.name, google_id=current_user.google_id, is_admin=current_user.administrator)
return render_template(
'profile.html',
name=current_user.name,
google_id=current_user.google_id,
is_admin=current_user.administrator
)