mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
6 lines
123 B
Python
6 lines
123 B
Python
from pathlib import Path
|
|
|
|
CWD = Path(__file__).parent
|
|
def fixture_path(fixture: str) -> str:
|
|
return str(CWD / fixture)
|