(blob_path: str)
| 23 | |
| 24 | |
| 25 | def get_blob_file_extension(blob_path: str) -> str: |
| 26 | splitted = blob_path.split('.') |
| 27 | if len(splitted) == 1: |
| 28 | return None |
| 29 | return splitted[len(splitted) - 1] |
| 30 | |
| 31 | |
| 32 | def get_blob_file_name(blob_path: str) -> str: |
no test coverage detected