Files
MLPproject/.venv/lib/python3.12/site-packages/rfc3987_syntax/utils.py
2025-10-23 15:44:32 +02:00

7 lines
136 B
Python

from pathlib import Path
def load_grammar(path: Path):
with open(path, "r", encoding="utf-8") as file:
return file.read()