aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Cam Caswell <[email protected]>2021-08-19 15:42:11 -0400
committerGravatar Cam Caswell <[email protected]>2021-08-19 15:42:11 -0400
commitd0b580454ba707220d955bf6e2f5799220e57eba (patch)
tree6f88311c6d0215eb332cd7b2268a0703bb12cbc7
parentAdd tip to help embed (diff)
Fix indent style
-rw-r--r--bot/exts/evergreen/duck_game.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py
index 1286995f..e9d3fa39 100644
--- a/bot/exts/evergreen/duck_game.py
+++ b/bot/exts/evergreen/duck_game.py
@@ -81,11 +81,12 @@ def as_trinary(card: tuple[int]) -> int:
class DuckGame:
"""A class for a single game."""
- def __init__(self,
- rows: int = 4,
- columns: int = 3,
- minimum_solutions: int = 1,
- ) -> None:
+ def __init__(
+ self,
+ rows: int = 4,
+ columns: int = 3,
+ minimum_solutions: int = 1,
+ ) -> None:
"""
Take samples from the deck to generate a board.