6 lines
124 B
Python
6 lines
124 B
Python
from __future__ import annotations
|
|
|
|
|
|
def avs_path(path: str) -> str:
|
|
return path.replace("\\", "/").replace('"', '\\"')
|