(path: str, suffix: str)
| 269 | |
| 270 | |
| 271 | def extend_path(path: str, suffix: str) -> str: |
| 272 | if not path: |
| 273 | return suffix |
| 274 | if suffix.startswith("["): |
| 275 | return f"{path}{suffix}" |
| 276 | return f"{path}.{suffix}" |
no outgoing calls
no test coverage detected