From bbf0ff09543fa55559ace853043a4adafe617e62 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Sun, 28 Jul 2024 21:47:05 -0600 Subject: [PATCH] Mods --- cromulant/utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cromulant/utils.py b/cromulant/utils.py index d5528a2..20d59d4 100644 --- a/cromulant/utils.py +++ b/cromulant/utils.py @@ -179,12 +179,7 @@ class Utils: @staticmethod def random_words(num: int = 1, noun: bool = True, adj: bool = True) -> list[str]: - return [ - Utils.random_word( - noun=noun, - ) - for _ in range(num) - ] + return [Utils.random_word(noun=noun) for _ in range(num)] @staticmethod def capitalize(word: str) -> str: