Skip to content

Commit

Permalink
Update lambda_function.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeiksegovia authored Dec 21, 2022
1 parent ba153a9 commit 45b2e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions function/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ def lambda_handler(event, context):
Returns:
string: greeting response
"""
print('Starting functions\n---------------------------------------------'
print('Starting functions\n---------------------------------------------')

if event["input"] == "Hello":

return "World"

else:

raise
raise

0 comments on commit 45b2e95

Please sign in to comment.