(self, filename: str, original_filepath: str, normalized_filepath: str)
| 60 | |
| 61 | class ModelFileWithNodeInfo: |
| 62 | def __init__(self, filename: str, original_filepath: str, normalized_filepath: str): |
| 63 | self.filename = filename |
| 64 | self.original_filepath = original_filepath |
| 65 | self.normalized_filepath = normalized_filepath |
| 66 | |
| 67 | def convert_to_unix_path(path: str) -> str: |
| 68 | return path.replace("\\\\", "/").replace("\\", "/") |
nothing calls this directly
no outgoing calls
no test coverage detected