Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ import json
|
|
3 |
import plotly.express as px
|
4 |
import pandas as pd
|
5 |
from typing import Tuple, Dict, Optional, List
|
|
|
|
|
6 |
|
7 |
# Import from our modules
|
8 |
from utils import (
|
@@ -717,16 +719,7 @@ def main():
|
|
717 |
value="Light"
|
718 |
)
|
719 |
|
720 |
-
|
721 |
-
fn=get_theme_styles,
|
722 |
-
inputs=[theme_radio],
|
723 |
-
outputs=[
|
724 |
-
trigger_explanation,
|
725 |
-
trigger_code_output,
|
726 |
-
object_explanation,
|
727 |
-
object_code_output
|
728 |
-
]
|
729 |
-
)
|
730 |
|
731 |
gr.Markdown("### π About This Tool")
|
732 |
gr.Markdown(
|
|
|
3 |
import plotly.express as px
|
4 |
import pandas as pd
|
5 |
from typing import Tuple, Dict, Optional, List
|
6 |
+
import logging
|
7 |
+
logger = logging.getLogger(__name__)
|
8 |
|
9 |
# Import from our modules
|
10 |
from utils import (
|
|
|
719 |
value="Light"
|
720 |
)
|
721 |
|
722 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
|
724 |
gr.Markdown("### π About This Tool")
|
725 |
gr.Markdown(
|