mirror of
https://github.com/rzmk/czv.git
synced 2025-12-19 08:09:24 +00:00
7 lines
211 B
Python
7 lines
211 B
Python
import pathlib
|
|
|
|
data_path = pathlib.Path(__file__).parent.resolve().joinpath("data")
|
|
test_data = {
|
|
file_name: data_path.joinpath(file_name)
|
|
for file_name in ["fruits.csv", "constituents_altnames.csv"]
|
|
}
|