Skip to content

Commit e4438b9

Browse files
author
none
committed
Fix a typo spotted by @demoze
1 parent c139702 commit e4438b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

device.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def callback_every(self, cb_period, cb_name, cb_func):
177177
"""
178178
arrange for cb_func to be called every cb_period cycles
179179
"""
180-
self.__add_callback(self, self.current_cycle + cp_period, cb_name, cb_func, cb_period)
180+
self.__add_callback(self, self.current_cycle + cb_period, cb_name, cb_func, cb_period)
181181

182182
def callback_cancel(self, cb_name):
183183
"""

0 commit comments

Comments
 (0)