Skip to content

Commit

Permalink
Added Task class(usage not implemented yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeusina committed Aug 14, 2023
1 parent a39e022 commit 115f91b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions petersbugredu_wrap/types/task.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class Task:
def __init__(self, task_name: str, task_code, task_kind_code: str, task_kind_name: str, files: list):
"""
Class represents task in API
:param task_name:
:param task_code:
:param task_kind_code:
:param task_kind_name:
:param files:
"""
self.files = files
self.task_kind_name = task_kind_name
self.task_kind_code = task_kind_code
self.task_code = task_code
self.task_name = task_name
raise NotImplementedError

0 comments on commit 115f91b

Please sign in to comment.