asofter
commited on
Commit
·
b3e5cf7
1
Parent(s):
10cef3f
* fix regex
Browse files
output.py
CHANGED
@@ -359,7 +359,7 @@ def init_settings() -> (List, Dict):
|
|
359 |
height=200,
|
360 |
).split("\n")
|
361 |
|
362 |
-
st_regex_is_blocked = st.checkbox("Is blocked", value=
|
363 |
|
364 |
st_regex_redact = st.checkbox(
|
365 |
"Redact",
|
|
|
359 |
height=200,
|
360 |
).split("\n")
|
361 |
|
362 |
+
st_regex_is_blocked = st.checkbox("Is blocked", value=True, key="regex_is_blocked")
|
363 |
|
364 |
st_regex_redact = st.checkbox(
|
365 |
"Redact",
|
prompt.py
CHANGED
@@ -332,7 +332,7 @@ def init_settings() -> (List, Dict):
|
|
332 |
height=200,
|
333 |
).split("\n")
|
334 |
|
335 |
-
st_regex_is_blocked = st.checkbox("Is blocked", value=
|
336 |
|
337 |
st_regex_redact = st.checkbox(
|
338 |
"Redact",
|
|
|
332 |
height=200,
|
333 |
).split("\n")
|
334 |
|
335 |
+
st_regex_is_blocked = st.checkbox("Is blocked", value=True, key="regex_is_blocked")
|
336 |
|
337 |
st_regex_redact = st.checkbox(
|
338 |
"Redact",
|