Spaces:
Running
Running
File size: 481 Bytes
d0f716d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
"""
File: practical_subtasks.py
Author: Elena Ryumina and Dmitry Ryumin
Description: Event handler for Gradio app to filter practical subtasks based on selected practical subtasks.
License: MIT License
"""
# Importing necessary components for the Gradio app
def event_handler_practical_subtasks(
practical_tasks, practical_subtasks, practical_subtasks_selected
):
practical_subtasks_selected[practical_tasks] = practical_subtasks
return practical_subtasks_selected
|