diff options
author | 2019-08-21 19:09:07 +0200 | |
---|---|---|
committer | 2019-08-21 19:09:07 +0200 | |
commit | 575ecfdbc1a96c42f0bfd0941bb5a8dd3bf83e5e (patch) | |
tree | 73aba94a8445ced2855521b5c5cf02ec6d5b3be1 /bot/seasons/evergreen/minesweeper.py | |
parent | making sure a game is always has a way to win no matter how hard it is. (diff) |
fixed import order.
Diffstat (limited to 'bot/seasons/evergreen/minesweeper.py')
-rw-r--r-- | bot/seasons/evergreen/minesweeper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/minesweeper.py b/bot/seasons/evergreen/minesweeper.py index 5c88be0d..f6fa9c47 100644 --- a/bot/seasons/evergreen/minesweeper.py +++ b/bot/seasons/evergreen/minesweeper.py @@ -1,7 +1,7 @@ import logging import typing from dataclasses import dataclass -from random import random, randint +from random import randint, random import discord from discord.ext import commands |