diff --git a/utils/job.py b/utils/job.py index 88e35c0..7900176 100644 --- a/utils/job.py +++ b/utils/job.py @@ -1,4 +1,9 @@ #!/bin/env python -""" Class for Job Handling """ \ No newline at end of file +""" Class for Job Handling """ + +class Job: + + def __init__(self, name): + self.__name__ = name