Creating a pull request 🩷
When you finish your changes, you can then start to prepare your pull request.
First, check for any formatting and linting errors.
bash
pdm run lint
pdm run format
After that, check for type errors.
bash
pdm run check-types
Any problem that wasn't automatically corrected must be fixed manually before creating your pull request. If everything is OK, you can commit your changes to your own fork.
bash
git add --all
git commit -m "My new feature"
git push origin main
And finally, from your fork's repository, you can now open a new pull request. I should receive a notification and I will review your changes!