(self)
| 295 | return 'data.pt' |
| 296 | |
| 297 | def download(self): |
| 298 | path = download_url(self.url, self.raw_dir) |
| 299 | extract_zip(path, self.raw_dir) |
| 300 | os.unlink(path) |
| 301 | |
| 302 | def process(self): |
| 303 | file_path = os.path.join(self.raw_dir, self.raw_file_names[0]) |
nothing calls this directly
no outgoing calls
no test coverage detected