Skip to content

Commit

Permalink
Fixing the tests but with bad formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
minond committed Oct 13, 2024
1 parent 7194c99 commit 676ba0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

@app.get("/greet")
def route_greet():
greeting = request.args.get("greeting", "Hello")
name = request.args.get("names", "friend")
return {"message": f"{greeting} {name}"}
greeting = request.args.get("greeting", "Hello")
name = request.args.get("name", "friend")
return {"message": f"{greeting} {name}"}

0 comments on commit 676ba0e

Please sign in to comment.