File size: 520 Bytes
b5ab0e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
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)