Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update ruff black linters #89

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ repos:
- id: requirements-txt-fixer

- repo: https://github.com/psf/black
rev: "23.3.0"
rev: "24.4.2"
hooks:
- id: black

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.1.8"
rev: "v0.4.10"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --unsafe-fixes]
1 change: 1 addition & 0 deletions examples/api_for_sqlalchemy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

In module placed db initialization functions, app factory.
"""

import sys
from pathlib import Path

Expand Down
1 change: 0 additions & 1 deletion examples/api_for_sqlalchemy/models/schemas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""schemas package."""


from .child import (
ChildInSchema,
ChildPatchSchema,
Expand Down
1 change: 1 addition & 0 deletions examples/api_for_sqlalchemy/models/schemas/post_comment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Post Comment schemas module."""

from datetime import datetime
from typing import TYPE_CHECKING

Expand Down
1 change: 1 addition & 0 deletions examples/api_for_sqlalchemy/models/schemas/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""User schemas module."""

from __future__ import annotations

from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions examples/api_for_sqlalchemy/models/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""User model."""

from __future__ import annotations

from sqlalchemy import Column, Integer, String
Expand Down
1 change: 1 addition & 0 deletions examples/api_for_sqlalchemy/models/user_bio.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""User Bio model."""

from typing import Dict, List

from sqlalchemy import JSON, Column, ForeignKey, Integer, String
Expand Down
1 change: 1 addition & 0 deletions examples/api_for_tortoise_orm/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

In module placed db initialization functions, app factory.
"""

import sys
from pathlib import Path

Expand Down
1 change: 0 additions & 1 deletion examples/api_for_tortoise_orm/models/pydantic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""W-mount schemas package."""


from .user import (
UserPatchSchema,
UserSchema,
Expand Down
1 change: 0 additions & 1 deletion examples/api_for_tortoise_orm/models/tortoise/user.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""User model."""


from tortoise import (
fields,
models,
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""JSON API utils package."""

from pathlib import Path

from fastapi import FastAPI
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""JSON API router class."""

from enum import Enum, auto
from inspect import Parameter, Signature, signature
from typing import (
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/data_layers/filtering/sqlalchemy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper to create sqlalchemy filters according to filter querystring parameter"""

import inspect
import logging
from collections.abc import Sequence
Expand Down
4 changes: 2 additions & 2 deletions fastapi_jsonapi/data_layers/filtering/tortoise_operation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Previously used: '__'
"""

from typing import Protocol


Expand Down Expand Up @@ -292,8 +293,7 @@ def type_op_ilike(field_name: str, type_op: str) -> str:


class ProcessTypeOperationFieldName(Protocol):
def __call__(self, field_name: str, type_op: str) -> str:
...
def __call__(self, field_name: str, type_op: str) -> str: ...


filters_dict: dict[str, ProcessTypeOperationFieldName] = {
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/data_layers/sorting/sqlalchemy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper to create sqlalchemy sortings according to filter querystring parameter"""

from typing import Any, List, Tuple, Type, Union

from pydantic.fields import ModelField
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/data_layers/sqla_orm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This module is a CRUD interface between resource managers and the sqlalchemy ORM"""

import logging
from typing import TYPE_CHECKING, Any, Iterable, List, Literal, Optional, Tuple, Type, Union

Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/querystring.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper to deal with querystring parameters according to jsonapi specification."""

from collections import defaultdict
from functools import cached_property
from typing import (
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

Pydantic (for FastAPI).
"""

from typing import (
TYPE_CHECKING,
Dict,
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/schema_builder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""JSON API schemas builder class."""

from dataclasses import dataclass
from functools import lru_cache
from typing import (
Expand Down
1 change: 1 addition & 0 deletions fastapi_jsonapi/signature.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functions for extracting and updating signatures."""

import inspect
import logging
from enum import Enum
Expand Down
95 changes: 46 additions & 49 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ asyncpg = "0.28.0"


[tool.poetry.group.lint.dependencies]
black = "^23.3.0"
ruff = "^0.1.8"
black = "^24.4.2"
ruff = "^0.4.10"
mypy = "^1.4.1"
sqlalchemy-stubs = "^0.4"
pre-commit = "^3.3.3"
Expand Down
30 changes: 18 additions & 12 deletions tests/test_api/test_api_sqla_with_includes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1206,14 +1206,16 @@ def prepare_expected_includes(
},
},
"comments": {
"data": [
{
"id": str(user_2_comment_for_one_u1_post.id),
"type": "post_comment",
},
]
if p.id == user_2_comment_for_one_u1_post.post_id
else [],
"data": (
[
{
"id": str(user_2_comment_for_one_u1_post.id),
"type": "post_comment",
},
]
if p.id == user_2_comment_for_one_u1_post.post_id
else []
),
},
},
}
Expand Down Expand Up @@ -1639,7 +1641,8 @@ async def test_create_with_relationship_to_the_same_table(self):

response_json = res.json()
assert response_json["data"]
assert (parent_object_id := response_json["data"].get("id"))
parent_object_id = response_json["data"].get("id")
assert parent_object_id
assert response_json == {
"data": {
"attributes": {
Expand Down Expand Up @@ -1673,7 +1676,8 @@ async def test_create_with_relationship_to_the_same_table(self):

response_json = res.json()
assert response_json["data"]
assert (child_object_id := response_json["data"].get("id"))
child_object_id = response_json["data"].get("id")
assert child_object_id
assert res.json() == {
"data": {
"attributes": {"name": "child"},
Expand Down Expand Up @@ -1728,7 +1732,8 @@ class ContainsTimestampAttrsSchema(BaseModel):
assert res.status_code == status.HTTP_201_CREATED, res.text
response_json = res.json()

assert (entity_id := response_json["data"]["id"])
entity_id = response_json["data"]["id"]
assert entity_id
assert response_json == {
"meta": None,
"jsonapi": {"version": "1.0"},
Expand Down Expand Up @@ -2865,7 +2870,8 @@ async def test_filter_by_null(

response_json = response.json()

assert len(data := response_json["data"]) == 1
data = response_json["data"]
assert len(data) == 1
assert data[0]["id"] == str(target_user.id)
assert data[0]["attributes"]["email"] == target_user.email

Expand Down