""" File: calculate_practical_tasks.py Author: Elena Ryumina and Dmitry Ryumin Description: Event handler for Gradio app to calculate practical tasks. License: MIT License """ import gradio as gr # Importing necessary components for the Gradio app from app.config import config_data from app.components import html_message def event_handler_calculate_practical_task_blocks(): gr.Info(config_data.InformationMessages_NOTI_IN_DEV) return html_message(config_data.InformationMessages_NOTI_IN_DEV, False, True)