Method
__init__
(self, file_path, configuration_file_path, remote_ssh)
Source from the content-addressed store, hash-verified
| 188 | class sn_init_directory_thread(threading.Thread): |
| 189 | |
| 190 | def __init__(self, file_path, configuration_file_path, remote_ssh): |
| 191 | threading.Thread.__init__(self) |
| 192 | self.file_path = file_path |
| 193 | self.remote_ssh = remote_ssh |
| 194 | self.configuration_file_path = configuration_file_path |
| 195 | |
| 196 | def run(self): |
| 197 | # Reset docker environment. |
Callers
nothing calls this directly
Tested by
no test coverage detected