Remove empty spaces in coins.py
This commit is contained in:
parent
fc643cc87a
commit
da7e02ffc9
1 changed files with 0 additions and 2 deletions
|
@ -26,7 +26,6 @@ THIRD_COLUMN = list(range(1, 37))[2::3]
|
|||
REGEX_STREET = re.compile("street([1-9]|1[0-2])$")
|
||||
|
||||
class Module(object):
|
||||
|
||||
def __init__(self, bot, events, exports):
|
||||
self.bot = bot
|
||||
events.on("received.command.coins").hook(self.coins,
|
||||
|
@ -58,7 +57,6 @@ class Module(object):
|
|||
self.send, min_args=2, help="Send coins to a user",
|
||||
usage="<nickname> <amount>", authenticated=True)
|
||||
|
||||
|
||||
now = datetime.datetime.now()
|
||||
until_next_hour = 60-now.second
|
||||
until_next_hour += ((60-(now.minute+1))*60)
|
||||
|
|
Loading…
Reference in a new issue