mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2024-12-23 16:23:01 +03:00
Maxim Slipenko
e80a01157f
Выполнен автоматический рефакторинг. Для тех файлов, которые не прошли flake8 - был добавлен `noqa`, чтобы в будущем исправить эти проблемы
16 lines
444 B
Python
16 lines
444 B
Python
from json import dumps
|
|
from pathlib import Path
|
|
|
|
pwd = Path().cwd()
|
|
dir_core = pwd / "src" / "core"
|
|
dir_modules_standard = pwd / "src" / "modules" / "standard"
|
|
dir_modules_custom = pwd / "src" / "modules" / "custom"
|
|
|
|
json = {
|
|
"core": str(dir_core),
|
|
"modules standard": str(dir_modules_standard),
|
|
"modules custom": str(dir_modules_custom),
|
|
}
|
|
with open("src/paths.json", "w", encoding="utf8") as f:
|
|
f.write(dumps(json, indent=4))
|