Vaibhav84 commited on
Commit
59da293
·
1 Parent(s): 42857f6
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -134,7 +134,7 @@ class Item(BaseModel):
134
 
135
  @app.post("/getProfileMatchResultsByName/{id}")
136
  def getProfileMatchResultsByName(id: str):
137
- item: Item
138
  item.title ='test'
139
  item.description = 'desc'
140
  json_compatible_item_data = jsonable_encoder(item)
 
134
 
135
  @app.post("/getProfileMatchResultsByName/{id}")
136
  def getProfileMatchResultsByName(id: str):
137
+ item: Item=Item
138
  item.title ='test'
139
  item.description = 'desc'
140
  json_compatible_item_data = jsonable_encoder(item)