Update slic/utils/run_later.py
Run CI Tests / test (push) Successful in 57s

This commit is contained in:
2025-08-06 13:57:16 +02:00
parent ba6969d691
commit a9e9e9bd82
+2 -3
View File
@@ -112,8 +112,7 @@ def run_at(when, func, *args, **kwargs):
'''
if __name__ == "__main__":
def fexample(a, b="default"):
@@ -149,5 +148,5 @@ if __name__ == "__main__":
res = run_at(when, fexample, 123, b=456)
print(res)
'''