Skip to content

Commit 2b01687

Browse files
committed
style: fix whitespaces
1 parent 0546c29 commit 2b01687

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

blackjack/game/tests/shoe_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_draw_empty(self):
3333
self.shoe._cards = []
3434

3535
with self.assertRaises(IndexError):
36-
card = self.shoe.draw()
36+
_ = self.shoe.draw()
3737

3838

3939
if __name__ == '__main__':

blackjackbot/commands/util/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _generate_evaluation_string_mp(game, lang_id):
5454
message += translator("eval_heading_wins") + "\n"
5555
message += _get_player_list_string(list_won, dealer_name)
5656

57-
#🔃
57+
# 🔃
5858
if len(list_tie) > 0:
5959
message += "\n\n{}\n".format(translator("eval_heading_ties"))
6060
message += _get_player_list_string(list_tie, dealer_name)

blackjackbot/util/userstate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
class UserState(Enum):
66
COMMENTING = 0
77
IDLE = 1
8-

0 commit comments

Comments
 (0)