|
| 1 | +<!-- |
| 2 | + You are amazing! Thanks for contributing to Scrapling! |
| 3 | + Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). |
| 4 | +--> |
| 5 | + |
| 6 | +## Proposed change |
| 7 | +<!-- |
| 8 | + Describe the big picture of your changes here to communicate to the |
| 9 | + maintainers why we should accept this pull request. If it fixes a bug |
| 10 | + or resolves a feature request, be sure to link to that issue in the |
| 11 | + additional information section. |
| 12 | +--> |
| 13 | + |
| 14 | + |
| 15 | +### Type of change: |
| 16 | +<!-- |
| 17 | + What type of change does your PR introduce to Scrapling? |
| 18 | + NOTE: Please, check at least 1 box! |
| 19 | + If your PR requires multiple boxes to be checked, you'll most likely need to |
| 20 | + split it into multiple PRs. This makes things easier and faster to code review. |
| 21 | +--> |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | +- [ ] Dependency upgrade |
| 26 | +- [ ] Bugfix (non-breaking change which fixes an issue) |
| 27 | +- [ ] New integration (thank you!) |
| 28 | +- [ ] New feature (which adds functionality to an existing integration) |
| 29 | +- [ ] Deprecation (breaking change to happen in the future) |
| 30 | +- [ ] Breaking change (fix/feature causing existing functionality to break) |
| 31 | +- [ ] Code quality improvements to existing code or addition of tests |
| 32 | +- [ ] Add or change doctests? -- Note: Please avoid changing both code and tests in a single pull request. |
| 33 | +- [ ] Documentation change? |
| 34 | + |
| 35 | +### Additional information |
| 36 | +<!-- |
| 37 | + Details are important, and help maintainers processing your PR. |
| 38 | + Please be sure to fill out additional details, if applicable. |
| 39 | +--> |
| 40 | + |
| 41 | +- This PR fixes or closes issue: fixes # |
| 42 | +- This PR is related to issue: |
| 43 | +- Link to documentation pull request: ** |
| 44 | + |
| 45 | +### Checklist: |
| 46 | +* [ ] I have read [CONTRIBUTING.md](/CONTRIBUTING.md). |
| 47 | +* [ ] This pull request is all my own work -- I have not plagiarized. |
| 48 | +* [ ] I know that pull requests will not be merged if they fail the automated tests. |
| 49 | +* [ ] All new Python files are placed inside an existing directory. |
| 50 | +* [ ] All filenames are in all lowercase characters with no spaces or dashes. |
| 51 | +* [ ] All functions and variable names follow Python naming conventions. |
| 52 | +* [ ] All function parameters and return values are annotated with Python [type hints](https://docs.python.org/3/library/typing.html). |
| 53 | +* [ ] All functions have doc-strings. |
0 commit comments