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-23 12:47:29 +0200 |
commit | afc939708ff71e168f9204f1eab8823b7dc9f875 (patch) | |
tree | 255d2c159d1b0b31ae7b1322d802a9fb4770f23b /sleekxmpp/plugins/xep_0323/timerreset.py | |
parent | aabec8b993748866b9cf3f09ebb7ae7ce2ddc426 (diff) | |
download | slixmpp-afc939708ff71e168f9204f1eab8823b7dc9f875.tar.gz slixmpp-afc939708ff71e168f9204f1eab8823b7dc9f875.tar.bz2 slixmpp-afc939708ff71e168f9204f1eab8823b7dc9f875.tar.xz slixmpp-afc939708ff71e168f9204f1eab8823b7dc9f875.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 |