aboutsummaryrefslogtreecommitdiff
path: root/modules/ui_components.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ui_components.py')
-rw-r--r--modules/ui_components.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/ui_components.py b/modules/ui_components.py
index 989cc87b..9aec3097 100644
--- a/modules/ui_components.py
+++ b/modules/ui_components.py
@@ -1,5 +1,3 @@
-import html
-
import gradio as gr
@@ -50,7 +48,3 @@ class FormColorPicker(gr.ColorPicker, gr.components.FormComponent):
def get_block_name(self):
return "colorpicker"
-
-def plaintext_to_html(text):
- text = "<p>" + "<br>\n".join([f"{html.escape(x)}" for x in text.split('\n')]) + "</p>"
- return text