(filename)
| 242 | try: |
| 243 | from os import PathLike |
| 244 | def unpath(filename): |
| 245 | if isinstance(filename, PathLike): |
| 246 | return filename.__fspath__() |
| 247 | else: |
| 248 | return filename |
| 249 | except ImportError: |
| 250 | def unpath(filename): |
| 251 | return filename |
no outgoing calls
no test coverage detected
searching dependent graphs…