Second SE homework on Debugging
Details
For dev reference, click here.- Install python requirements
pip install -r requirements.txt
- Running autopep8 on all files
autopep8 -i src/* - Running pylint
pylint src/* >> src/post_traces/pylint.txt # first time pylint src/* # iteratively
- Running pyright
pyright src/* >> src/post_traces/pyright.txt # first time pyright src/* # iteratively
- Running pytest
pytest