(filepath)
| 28 | |
| 29 | |
| 30 | def is_local_path(filepath): |
| 31 | return not ( |
| 32 | filepath.startswith("hdfs://") |
| 33 | or filepath.startswith("viewfs://") |
| 34 | or filepath.startswith("s3://") |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | def check_local_file_exists(filename): |
no outgoing calls
no test coverage detected