fix prev commit

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-11-03 18:01:12 -05:00
parent 339d5fe8f1
commit 5f8a27636e
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
import random
import re
from files.classes.user import User
from typing import List, Literal, Optional, Union
from .const import *
from random import choice, choices
@ -142,7 +141,7 @@ def sub_matcher_profanities(match, upper=False):
def sub_matcher_profanities_upper(match):
return sub_matcher_profanities(match, upper=True)
def censor_slurs(body:Optional[str], logged_user:Union[Optional[User], Literal['chat']]):
def censor_slurs(body:Optional[str], logged_user):
if not body: return ""
def replace_re(body:str, regex:re.Pattern, regex_upper:re.Pattern, sub_func, sub_func_upper):
body = regex_upper.sub(sub_func_upper, body)