ammaan commited on
Commit
fcdcb6c
1 Parent(s): 8050ae2

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -5
main.py CHANGED
@@ -6,8 +6,5 @@ app = FastAPI()
6
 
7
  @app.get("/")
8
  def read_root():
9
- response_data:{
10
- 'Status':'Success',
11
- 'data':'hello'
12
- }
13
- return response_data
 
6
 
7
  @app.get("/")
8
  def read_root():
9
+ return {"Hello": "World Bob"}
10
+