Skip to content

[Bootcamp Task] Implement static typing for thumbor/config.py #10

Open
@heynemann

Description

@heynemann

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/config.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/config.py from thumbor's virtualenv.

When creating this task, this was the output of running mypy thumbor/config.py:

../thumbor/thumbor/config.py:14: error: Skipping analyzing "derpconf": module is installed, but missing library stubs or py.typed marker  [import]
../thumbor/thumbor/config.py:14: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
../thumbor/thumbor/config.py:15: error: Skipping analyzing "derpconf.config": module is installed, but missing library stubs or py.typed marker  [import]
../thumbor/thumbor/config.py:786: error: Function is missing a return type annotation  [no-untyped-def]
../thumbor/thumbor/config.py:786: note: Use "-> None" if function does not return a value
../thumbor/thumbor/config.py:790: error: Function is missing a type annotation  [no-untyped-def]
Found 4 errors 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/config.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:

  1. Fork the involved repositories
  2. In each repository there's a documentation on how to install dependencies and initialize your environment
  3. 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
  4. Submit a pull request.

Metadata

Metadata

Assignees

No one assigned

    Labels

    L1Level 1 Bootcamp TaskmypyTasks related to static typing using MyPy.taskBootcamp task. Feel free to grab it and work on it. For more information ping a bootcamp mentor.thumbor/config.pylabel for fixing issues with the specified file

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions