diff options
author | 2021-05-10 08:43:40 -0400 | |
---|---|---|
committer | 2021-05-10 08:43:40 -0400 | |
commit | d7e3937d019025578b09fed0bfc59bb0e174ed84 (patch) | |
tree | 099fd30a0d45f76332135237007143dedc7fc5a5 | |
parent | final minor refinery as requested by vcokltfre (diff) |
Update bot/exts/evergreen/trivia_quiz.py
Co-authored-by: Shivansh-007 <[email protected]>
-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 56929fe7..bd319910 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -72,9 +72,7 @@ def linear_system(q_format: str, a_format: str) -> QAndA: question = q_format.format( coeffs[0], coeffs[1], - ( - coeffs[0] * x + coeffs[1] * y - ), + coeffs[0] * x + coeffs[1] * y, coeffs[2], coeffs[3], ( |