Description
Areas of Expertise
MyPy, static typing
You will learn more about how to use statically typed python code. mypy is an optional static type checker for python. It provides compile-time type checking.
Summary
In this task you'll fix thumbor/url.py
to be typed.
Involved Modules
Task Relevance
Providing type safety is important both for thumbor and the projects that depend on it. This way we can eliminate type errors, like None
where you don't expect None
or an integer where you expect a string.
How to complete this task?
To complete this task, read mypy docs on how to get started and run mypy thumbor/url.py
from thumbor's virtualenv.
When creating this task, this was the output of running mypy thumbor/url.py
:
../thumbor/thumbor/url.py:11: error: Skipping analyzing "libthumbor.url": module is installed, but missing library stubs or py.typed marker [import]
../thumbor/thumbor/url.py:11: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
Found 1 error in 1 file (checked 1 source file)
This gives you all errors in the file you will fix. Don't worry if there are types of other packages (other thumbor files or thumbor dependencies) failing. If that's the case we can ignore these for now using this kind of annotation:
import module_without_mypy # type: ignore
For more details check this page.
Once you get to a point where running mypy thumbor/url.py
returns no errors, go ahead and submit a PR. The output should look like this:
Success: no issues found in 1 source file
Task Workflow
The workflow for completing tasks in thumbor goes like this:
- Fork the involved repositories
- In each repository there's a documentation on how to install dependencies and initialize your environment
- Hack, in no particular order:
- Write code & tests
- Write new tests
- Write docs
- Improve design
- Check that all tests pass
- Repeat until you're satisfied
- Submit a pull request.