(self, taskid, remote_addr)
| 128 | |
| 129 | class Task(object): |
| 130 | def __init__(self, taskid, remote_addr): |
| 131 | self.remote_addr = remote_addr |
| 132 | self.process = None |
| 133 | self.output_directory = None |
| 134 | self.options = None |
| 135 | self._original_options = None |
| 136 | self.initialize_options(taskid) |
| 137 | |
| 138 | def initialize_options(self, taskid): |
| 139 | datatype = {"boolean": False, "string": None, "integer": None, "float": None} |
nothing calls this directly
no test coverage detected