diff options
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index bd319910..045fedbf 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -75,9 +75,7 @@ def linear_system(q_format: str, a_format: str) -> QAndA: coeffs[0] * x + coeffs[1] * y, coeffs[2], coeffs[3], - ( - coeffs[2] * x + coeffs[3] * y - ), + coeffs[2] * x + coeffs[3] * y, ) return question, answer |