shubhamofbce commited on
Commit
28bd2aa
·
verified ·
1 Parent(s): 2612183

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. __pycache__/app.cpython-311.pyc +0 -0
  2. app.py +3 -1
__pycache__/app.cpython-311.pyc ADDED
Binary file (54 kB). View file
 
app.py CHANGED
@@ -542,6 +542,7 @@ with gr.Blocks( # noqa: SIM117
542
  base_theme, final_theme, core_variables, final_main_fonts, final_mono_fonts
543
  ):
544
  print(f"inside generate theme code base_theme is {base_theme}, final_theme is {final_theme}, core_variables is {core_variables}")
 
545
  base_theme_name = base_theme
546
  base_theme = [theme for theme in themes if theme.__name__ == base_theme][
547
  0
@@ -630,7 +631,8 @@ with gr.Blocks( # noqa: SIM117
630
  else:
631
  new_final_attr_values[key] = val
632
 
633
- print("new final attrs -->", new_final_attr_values)
 
634
 
635
  specific_core_diffs[value_name] = (source_class, new_final_attr_values)
636
 
 
542
  base_theme, final_theme, core_variables, final_main_fonts, final_mono_fonts
543
  ):
544
  print(f"inside generate theme code base_theme is {base_theme}, final_theme is {final_theme}, core_variables is {core_variables}")
545
+ # print(final_theme.__dict__)
546
  base_theme_name = base_theme
547
  base_theme = [theme for theme in themes if theme.__name__ == base_theme][
548
  0
 
631
  else:
632
  new_final_attr_values[key] = val
633
 
634
+ print(f"new finaal attr = {new_final_attr_values} and source class = {source_class}---------------------------")
635
+
636
 
637
  specific_core_diffs[value_name] = (source_class, new_final_attr_values)
638