for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Author: Simon Blanke
# Email: [email protected]
# License: MIT License
class Scheduler:
def __init__(self, n_jobs):
self.n_jobs = n_jobs
class DefaultScheduler(Scheduler):
super().__init__(n_jobs)
class SmartScheduler(Scheduler):