aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-24 13:25:09 +0100
committerGravatar jesopo2018-09-24 13:25:09 +0100
commitda7e02ffc961c16133aa42473a58af96aabe2982 (patch)
tree34b1f4bbb68253ccbbe6012f6eac2d366729b8bc /modules
parentlast_called -> _last_called (diff)
signature
Remove empty spaces in coins.py
Diffstat (limited to 'modules')
-rw-r--r--modules/coins.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/coins.py b/modules/coins.py
index f1e3f826..fef48258 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -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)