We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276327c commit 5eb3b5dCopy full SHA for 5eb3b5d
1 file changed
picozero/picozero.py
@@ -1204,8 +1204,10 @@ def schedule_callback(callback):
1204
except RuntimeError as e:
1205
if str(e) == "schedule queue full":
1206
raise EventFailedScheduleQueueFull(
1207
- "{} - {} not run due to the micropython schedule queue being full".format(
+ "{} - {} not run due to the micropython schedule being full".format(
1208
str(self), callback_to_run.__name__))
1209
+ else:
1210
+ raise e
1211
1212
@property
1213
def is_active(self):
0 commit comments