Add logging of tasks
Browse files
src/get_results_for_task.py
CHANGED
|
@@ -21,6 +21,9 @@ except FileNotFoundError as e:
|
|
| 21 |
AVAILABLE_TASKS = []
|
| 22 |
logging.warning("Dataset is not available! Check if token is expired.")
|
| 23 |
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
def _get_results_stub() -> pd.DataFrame:
|
| 26 |
stub_df = pd.DataFrame(
|
|
|
|
| 21 |
AVAILABLE_TASKS = []
|
| 22 |
logging.warning("Dataset is not available! Check if token is expired.")
|
| 23 |
|
| 24 |
+
AVAILABLE_TASKS_STR = ' ; '.join(AVAILABLE_TASKS)
|
| 25 |
+
logging.warning(f"Available tasks: {AVAILABLE_TASKS_STR}")
|
| 26 |
+
|
| 27 |
|
| 28 |
def _get_results_stub() -> pd.DataFrame:
|
| 29 |
stub_df = pd.DataFrame(
|