From e7fb2dce030862ec014be19187f7c464ece76ff2 Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Wed, 10 Jul 2024 18:13:01 +0100 Subject: [PATCH] tweak uwu mutator settings --- src/mutators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mutators.py b/src/mutators.py index 58d8b17..a667eba 100644 --- a/src/mutators.py +++ b/src/mutators.py @@ -38,7 +38,7 @@ class Uwuify(TextMutator): """ def mutate(self, text: str, nsfw=False) -> str: - uwu = Uwuipy(None, 0.3, 0.3, 0.3, 1, nsfw, 2) + uwu = Uwuipy(None, 0.1, 0.05, 0.075, 1, nsfw, 2) return uwu.uwuify(text)