Skip to content

Commit

Permalink
Merge pull request #81 from jtc42/fix-pylint-false-positive
Browse files Browse the repository at this point in the history
fix: ignore pylint arguments-differ false-positive
  • Loading branch information
jtc42 authored Apr 14, 2024
2 parents 32cb1c8 + 129e827 commit 3408a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastapi_hypermodel/url_for/url_for.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(
self._templated = templated

@classmethod
def __get_pydantic_json_schema__(
def __get_pydantic_json_schema__( # pylint: disable=arguments-differ
cls: Type[Self], __core_schema: CoreSchema, handler: GetJsonSchemaHandler
) -> JsonSchemaValue:
json_schema = handler(__core_schema)
Expand Down

0 comments on commit 3408a7f

Please sign in to comment.