aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/trivia_quiz.py
diff options
context:
space:
mode:
authorGravatar Objectivitix <[email protected]>2021-05-10 08:44:16 -0400
committerGravatar GitHub <[email protected]>2021-05-10 08:44:16 -0400
commitf8ea21fd364adb09f26b092aa4ef0cbbeeca0430 (patch)
tree3a83c8c5b94a44cd232a34c9e49243521fa5d12f /bot/exts/evergreen/trivia_quiz.py
parentUpdate bot/exts/evergreen/trivia_quiz.py (diff)
remove redundant parentheses
Co-authored-by: Shivansh-007 <[email protected]>
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-rw-r--r--bot/exts/evergreen/trivia_quiz.py4
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