mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-23 10:40:23 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
from yaml import safe_load
|
|
from pathlib import Path
|
|
|
|
CHK_PATH = Path(__file__).parent / "_vectors_chk.yaml"
|
|
|
|
with CHK_PATH.open() as f:
|
|
chk = safe_load(f)
|