Retrieves the full, absolute path for a given V3 asset Args: file_name: Name of the asset file. Can include subdirectories. Returns: The full path to the asset file.
(file_name: str)
| 10 | |
| 11 | |
| 12 | def full_V3_path_for(file_name: str) -> str: |
| 13 | """Retrieves the full, absolute path for a given V3 asset |
| 14 | |
| 15 | Args: |
| 16 | file_name: Name of the asset file. Can include subdirectories. |
| 17 | |
| 18 | Returns: |
| 19 | The full path to the asset file. |
| 20 | """ |
| 21 | return str(ENV_ASSET_DIR_V3 / file_name) |
no outgoing calls
no test coverage detected
searching dependent graphs…