Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update timers.py (#178)
Clarify what happens when persist=False
  • Loading branch information
ke4roh authored and prologic committed Aug 17, 2016
1 parent 4431be0 commit b0df3dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion circuits/core/timers.py
Expand Up @@ -30,7 +30,9 @@ def __init__(self, interval, event, *channels, **kwargs):
:param persist: An optional keyword argument which if ``True``
will cause the event to be fired repeatedly
once per configured interval until the timer
is unregistered. **Default:** ``False``
is unregistered. If ``False``, the event fires
exactly once after the specified interval, and
the timer is unregistered. **Default:** ``False``
:type persist: ``bool``
"""

Expand Down

0 comments on commit b0df3dd

Please sign in to comment.