Vaibhav84 commited on
Commit
8f0089b
·
1 Parent(s): 0d4ebbf
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def parse_csv(df):
49
  return parsed
50
 
51
  @app.post("/CustomerLogin/")
52
- async def UploadJobDescription(CustomerID : str, CustomerPwd: str):
53
  try:
54
  if CustomerID != "" and CustomerPwd == (CustomerID + "123"):
55
  return "Login Successful"
 
49
  return parsed
50
 
51
  @app.post("/CustomerLogin/")
52
+ def UploadJobDescription(CustomerID : str, CustomerPwd: str):
53
  try:
54
  if CustomerID != "" and CustomerPwd == (CustomerID + "123"):
55
  return "Login Successful"