Spaces:
Runtime error
Runtime error
Fix get_all_interviewers function name
Browse files
app.py
CHANGED
|
@@ -28,9 +28,9 @@ def repo_get_all_employees_from_database():
|
|
| 28 |
|
| 29 |
return employees_list
|
| 30 |
|
| 31 |
-
def
|
| 32 |
"""
|
| 33 |
-
A function to get a list of all
|
| 34 |
Returns:
|
| 35 |
str: A list of all employees in json.
|
| 36 |
"""
|
|
|
|
| 28 |
|
| 29 |
return employees_list
|
| 30 |
|
| 31 |
+
def get_all_interviewers() -> str:
|
| 32 |
"""
|
| 33 |
+
A function to get a list of all interviewers from database.
|
| 34 |
Returns:
|
| 35 |
str: A list of all employees in json.
|
| 36 |
"""
|