diff options
author | Robin Gloster <robin@loc-com.de> | 2014-08-18 00:52:24 +0200 |
---|---|---|
committer | Robin Gloster <robin@loc-com.de> | 2014-08-18 00:52:24 +0200 |
commit | 7265682a4d57d88956cb54f98f7a470465bbf417 (patch) | |
tree | d32011f02f648de9ba2d5ea99d5af1daefecbaf9 /sleekxmpp/plugins/xep_0323/timerreset.py | |
parent | 08c62a6bf1fe19ddf1f0c8fa441750f41f5d9436 (diff) | |
download | slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.gz slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.bz2 slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.xz slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.zip |
cleanup semicolons, whitespace and mutable default arguments
Diffstat (limited to 'sleekxmpp/plugins/xep_0323/timerreset.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0323/timerreset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0323/timerreset.py b/sleekxmpp/plugins/xep_0323/timerreset.py index 578f1efe..f36d95e5 100644 --- a/sleekxmpp/plugins/xep_0323/timerreset.py +++ b/sleekxmpp/plugins/xep_0323/timerreset.py @@ -23,7 +23,7 @@ class _TimerReset(Thread): t.cancel() # stop the timer's action if it's still waiting """ - def __init__(self, interval, function, args=[], kwargs={}): + def __init__(self, interval, function, *args, **kwargs): Thread.__init__(self) self.interval = interval self.function = function |