diff options
author | 2021-05-10 08:44:16 -0400 | |
---|---|---|
committer | 2021-05-10 08:44:16 -0400 | |
commit | f8ea21fd364adb09f26b092aa4ef0cbbeeca0430 (patch) | |
tree | 3a83c8c5b94a44cd232a34c9e49243521fa5d12f | |
parent | Update bot/exts/evergreen/trivia_quiz.py (diff) |
remove redundant parentheses
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 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 |