Spaces:
Runtime error
Runtime error
quyip
commited on
Commit
·
aea3063
1
Parent(s):
0433163
fix
Browse files- utils/tag_utils.py +1 -1
utils/tag_utils.py
CHANGED
@@ -5,7 +5,7 @@ BlockTagContents = ['voice']
|
|
5 |
|
6 |
|
7 |
def filter_tags(tags: List[str]) -> List[str]:
|
8 |
-
tags = [tag.strip().lower() for tag in tags]
|
9 |
tags = [tag for tag in tags
|
10 |
if len(tag) > 2
|
11 |
and tag not in BlockTagNames
|
|
|
5 |
|
6 |
|
7 |
def filter_tags(tags: List[str]) -> List[str]:
|
8 |
+
tags = [tag.strip().lower().replace('|', '') for tag in tags]
|
9 |
tags = [tag for tag in tags
|
10 |
if len(tag) > 2
|
11 |
and tag not in BlockTagNames
|