summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-11-26 02:24:15 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-11 20:49:46 +0100
commitfb4ceb232c5dd5b4a67126a5c2b464732d9e59ac (patch)
tree441de1409d19dd3ba2a9c7f506459a1dbd42ecde
parent08baecfc5ab40d90622fe789a93aedd41ca3b178 (diff)
downloadpoezio-fb4ceb232c5dd5b4a67126a5c2b464732d9e59ac.tar.gz
poezio-fb4ceb232c5dd5b4a67126a5c2b464732d9e59ac.tar.bz2
poezio-fb4ceb232c5dd5b4a67126a5c2b464732d9e59ac.tar.xz
poezio-fb4ceb232c5dd5b4a67126a5c2b464732d9e59ac.zip
Remove unused imports in poezio.timed_events.
-rw-r--r--poezio/timed_events.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/poezio/timed_events.py b/poezio/timed_events.py
index 7f43d05f..8ce94407 100644
--- a/poezio/timed_events.py
+++ b/poezio/timed_events.py
@@ -13,11 +13,6 @@ Once created, they must be added to the list of checked events with
:py:func:`.PluginAPI.add_timed_event` (within a plugin).
"""
-import asyncio
-import logging
-
-log = logging.getLogger(__name__)
-
import datetime
class DelayedEvent(object):