Skip to content

Commit

Permalink
fix small syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Nov 13, 2023
1 parent 5297c13 commit 15593c9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
app/__pycache__
Binary file removed app/__pycache__/main.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
@app.get("/")
def read_root():
return {
"Commit": os.environ.get('GIT_COMMIT')
"Commit": os.environ.get('GIT_COMMIT'),
"From": os.environ.get('ENV', 'DEFAULT_ENV'),
}

0 comments on commit 15593c9

Please sign in to comment.