From 15593c9c797b541e9125343da920526a17625150 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Mon, 13 Nov 2023 15:40:44 -0500 Subject: [PATCH] fix small syntax issue --- .gitignore | 1 + app/__pycache__/main.cpython-311.pyc | Bin 484 -> 0 bytes app/main.py | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore delete mode 100644 app/__pycache__/main.cpython-311.pyc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..872339c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +app/__pycache__ \ No newline at end of file diff --git a/app/__pycache__/main.cpython-311.pyc b/app/__pycache__/main.cpython-311.pyc deleted file mode 100644 index a0e501b0bc7fd3fa61dc2673b790e3274c30ab2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 484 zcmZ8dze@u#6wbTc+17eGbSP-+-a&5_5kU~qr3xa2E)q>FXYZOLIVo|7j@_j{IVt+T6S(ORev;h^CBF*9wpzlg`5S$RWkdnsjjRm*p5dI^ lX>|Rb-=RaWZ;Lm@yF$0rD~&9G)e*t+Nr|=i8%WXg!7s+KXwv`y diff --git a/app/main.py b/app/main.py index 0f77b8c..5f35dbc 100644 --- a/app/main.py +++ b/app/main.py @@ -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'), } \ No newline at end of file