MD500_Pilot

Untitled

Apr 13th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. import schedule_zones
  4.  
  5. def add_new_job(myfunc, time):
  6.     schedule_zones.add_zone_job(myfunc, time)
  7.  
  8. if __name__ == '__main__':
  9.     add_new_job('mytestfunction', 2)
Add Comment
Please, Sign In to add comment