Skip to content

Commit

Permalink
minor initialization change
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBender committed Sep 2, 2016
1 parent a93604f commit bf41a42
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions samples/RecurringTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ class PrairieDog(RecurringTask):

def __init__(self, dog_number, interval):
if _debug: PrairieDog._debug("__init__ %r %r", dog_number, interval)
RecurringTask.__init__(self, interval)

# save the identity
self.dog_number = dog_number

# this is a recurring task
RecurringTask.__init__(self, interval)

# install it
self.install_task()

Expand Down

0 comments on commit bf41a42

Please sign in to comment.