Skip to content
Snippets Groups Projects
Commit 8ec482d4 authored by Krish Moodbidri's avatar Krish Moodbidri
Browse files

removed unused imports and whitespaces

parent 025b07c1
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,6 @@ Initialize the main flask app ...@@ -6,7 +6,6 @@ Initialize the main flask app
# standard imports # standard imports
from __future__ import print_function from __future__ import print_function
import re
import sys import sys
import uuid import uuid
...@@ -47,7 +46,7 @@ def create_app(config_name): ...@@ -47,7 +46,7 @@ def create_app(config_name):
def get_authorized_user(): def get_authorized_user():
user = { user = {
"username": request.headers.get("REMOTE_USER"), "username": request.headers.get("REMOTE_USER"),
"fullname": request.headers.get("Displayname"), "fullname": request.headers.get("Displayname"),
"email": request.headers.get("Mail"), "email": request.headers.get("Mail"),
"eppa": request.headers.get("Unscoped-Affiliation"), "eppa": request.headers.get("Unscoped-Affiliation"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment