Skip to main content

A flake8 plugin to check Pydantic related code.

Project description

Flake8 Pydantic

Python versions PyPI version Ruff

A flake8 plugin to check Pydantic related code.

Class detection

flake8_pydantic parses the AST to emit linting errors. As such, it cannot accurately determine if a class is defined as a Pydantic model. However, it tries its best, using the following heuristics:

  • The class inherits from BaseModel or RootModel.
  • The class has a model_config attribute set.
  • The class has a field defined with the Field function.
  • The class has a field making use of Annotated.
  • The class makes use of Pydantic decorators, such as computed_field or model_validator.
  • The class overrides any of the Pydantic methods, such as model_dump.

Error codes

PYD001 - Positional argument for Field default argument

Raise an error if the default argument of the Field function is positional.

class Model(BaseModel):
    foo: int = Field(1)

Although allowed at runtime by Pydantic, it does not comply with the typing specification (PEP 681) and type checkers will not be able to synthesize a correct __init__ method.

Instead, consider using an explicit keyword argument:

class Model(BaseModel):
    foo: int = Field(default=1)

PYD002 - Non-annotated attribute inside Pydantic model

Raise an error if a non-annotated attribute is defined inside a Pydantic model class.

class Model(BaseModel):
    foo = 1  # Will error at runtime

PYD003 - Unecessary Field call to specify a default value

Raise an error if the Field function is used only to specify a default value.

class Model(BaseModel):
    foo: int = Field(default=1)

Instead, consider specifying the default value directly:

class Model(BaseModel):
    foo: int = 1

PYD004 - Default argument specified in annotated

Raise an error if the default argument of the Field function is used together with Annotated.

class Model(BaseModel):
    foo: Annotated[int, Field(default=1, description="desc")]

To make type checkers aware of the default value, consider specifying the default value directly:

class Model(BaseModel):
    foo: Annotated[int, Field(description="desc")] = 1

PYD005 - Field name overrides annotation

Raise an error if the field name clashes with the annotation.

from datetime import date

class Model(BaseModel):
    date: date | None = None

Because of how Python evaluates annotated assignments, unexpected issues can happen when using an annotation name that clashes with a field name. Pydantic will try its best to warn you about such issues, but can fail in complex scenarios (and the issue may even be silently ignored).

Instead, consider, using an alias or referencing your type under a different name:

from datetime import date

date_ = date

class Model(BaseModel):
    date_aliased: date | None = Field(default=None, alias="date")
    # or
    date: date_ | None = None

PYD010 - Usage of __pydantic_config__

Raise an error if a Pydantic configuration is set with __pydantic_config__.

class Model(TypedDict):
    __pydantic_config__ = {}  # Type checkers will emit an error

Although allowed at runtime by Python, type checkers will emit an error as it is not allowed to assign values when defining a TypedDict.

Instead, consider using the with_config decorator:

@with_config({"str_to_lower": True})
class Model(TypedDict):
    pass

And many more to come.

Roadmap

Once the rules of the plugin gets stable, the goal will be to implement them in Ruff, with autofixes when possible.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8-pydantic-0.3.0.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

flake8_pydantic-0.3.0-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file flake8-pydantic-0.3.0.tar.gz.

File metadata

  • Download URL: flake8-pydantic-0.3.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for flake8-pydantic-0.3.0.tar.gz
Algorithm Hash digest
SHA256 924d7a24c13c9780920ea2cd56097e98fbb6d53cece959bdeb1cd74cc74d9b21
MD5 0b06cc94fc86d6b84d99fddb2c1c0f76
BLAKE2b-256 0dd166e8209a88e82e57521c936a1e7055ed512540e940c8135cbb0cd11086e1

See more details on using hashes here.

File details

Details for the file flake8_pydantic-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for flake8_pydantic-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dae93fab32468ad97494ea3fa93f0d0967b9397c2d4d0b2e073f2d3857ffc4fa
MD5 a4073a7cec654c302a1c7b2b7a8ed911
BLAKE2b-256 eb140b7e3464051d55f9cb55e03207bf05836c90976e5218e94956868e4bcc9a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page