Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@


def get_params():
params = {'key': os.environ.get('key', ''),
'user': os.environ.get('user', ''),
'password': os.environ.get('password', '')}
return params
params1 = {'key': os.environ.get('key', ''),
'user': os.environ.get('user', ''),
'password': os.environ.get('password', '')}
return params1


class Root(object):
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1>These are the user variables injected</h1>
<h1>June 22 123: These are the user variables injected</h1>

<table>
<tr>
Expand Down