├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── app ├── __init__.py ├── restore_names.py └── test_restore_names.py ├── requirements.txt └── tests ├── __init__.py └── test_tests.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/restore_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/app/restore_names.py -------------------------------------------------------------------------------- /app/test_restore_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/app/test_restore_names.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kapitoshk4/py-restore-names/HEAD/tests/test_tests.py --------------------------------------------------------------------------------