├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── main.py ├── pytest.ini └── test_module.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/main.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -vv -p no:cacheprovider -------------------------------------------------------------------------------- /test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turonk/character_creation_module/HEAD/test_module.py --------------------------------------------------------------------------------