Browse Source
⬆️ Upgrade version of Ruff and reformat (#12032)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
pull/10168/head
Sebastián Ramírez
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with
22 additions and
22 deletions
-
.github/actions/people/app/main.py
-
.pre-commit-config.yaml
-
fastapi/dependencies/utils.py
-
fastapi/routing.py
-
fastapi/utils.py
-
requirements-tests.txt
-
tests/test_dependency_contextmanager.py
-
tests/test_inherited_custom_class.py
|
|
@ -515,9 +515,9 @@ def get_individual_sponsors(settings: Settings): |
|
|
|
|
|
|
|
tiers: DefaultDict[float, Dict[str, SponsorEntity]] = defaultdict(dict) |
|
|
|
for node in nodes: |
|
|
|
tiers[node.tier.monthlyPriceInDollars][ |
|
|
|
node.sponsorEntity.login |
|
|
|
] = node.sponsorEntity |
|
|
|
tiers[node.tier.monthlyPriceInDollars][node.sponsorEntity.login] = ( |
|
|
|
node.sponsorEntity |
|
|
|
) |
|
|
|
return tiers |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -14,7 +14,7 @@ repos: |
|
|
|
- id: end-of-file-fixer |
|
|
|
- id: trailing-whitespace |
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit |
|
|
|
rev: v0.2.0 |
|
|
|
rev: v0.6.1 |
|
|
|
hooks: |
|
|
|
- id: ruff |
|
|
|
args: |
|
|
|
|
|
@ -342,9 +342,9 @@ def analyze_param( |
|
|
|
if isinstance(arg, (params.Param, params.Body, params.Depends)) |
|
|
|
] |
|
|
|
if fastapi_specific_annotations: |
|
|
|
fastapi_annotation: Union[ |
|
|
|
FieldInfo, params.Depends, None |
|
|
|
] = fastapi_specific_annotations[-1] |
|
|
|
fastapi_annotation: Union[FieldInfo, params.Depends, None] = ( |
|
|
|
fastapi_specific_annotations[-1] |
|
|
|
) |
|
|
|
else: |
|
|
|
fastapi_annotation = None |
|
|
|
if isinstance(fastapi_annotation, FieldInfo): |
|
|
|
|
|
@ -454,9 +454,9 @@ class APIRoute(routing.Route): |
|
|
|
methods = ["GET"] |
|
|
|
self.methods: Set[str] = {method.upper() for method in methods} |
|
|
|
if isinstance(generate_unique_id_function, DefaultPlaceholder): |
|
|
|
current_generate_unique_id: Callable[ |
|
|
|
["APIRoute"], str |
|
|
|
] = generate_unique_id_function.value |
|
|
|
current_generate_unique_id: Callable[[APIRoute], str] = ( |
|
|
|
generate_unique_id_function.value |
|
|
|
) |
|
|
|
else: |
|
|
|
current_generate_unique_id = generate_unique_id_function |
|
|
|
self.unique_id = self.operation_id or current_generate_unique_id(self) |
|
|
@ -482,9 +482,9 @@ class APIRoute(routing.Route): |
|
|
|
# By being a new field, no inheritance will be passed as is. A new model |
|
|
|
# will always be created. |
|
|
|
# TODO: remove when deprecating Pydantic v1 |
|
|
|
self.secure_cloned_response_field: Optional[ |
|
|
|
ModelField |
|
|
|
] = create_cloned_field(self.response_field) |
|
|
|
self.secure_cloned_response_field: Optional[ModelField] = ( |
|
|
|
create_cloned_field(self.response_field) |
|
|
|
) |
|
|
|
else: |
|
|
|
self.response_field = None # type: ignore |
|
|
|
self.secure_cloned_response_field = None |
|
|
|
|
|
@ -34,9 +34,9 @@ if TYPE_CHECKING: # pragma: nocover |
|
|
|
from .routing import APIRoute |
|
|
|
|
|
|
|
# Cache for `create_cloned_field` |
|
|
|
_CLONED_TYPES_CACHE: MutableMapping[ |
|
|
|
Type[BaseModel], Type[BaseModel] |
|
|
|
] = WeakKeyDictionary() |
|
|
|
_CLONED_TYPES_CACHE: MutableMapping[Type[BaseModel], Type[BaseModel]] = ( |
|
|
|
WeakKeyDictionary() |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
def is_body_allowed_for_status_code(status_code: Union[int, str, None]) -> bool: |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
pytest >=7.1.3,<8.0.0 |
|
|
|
coverage[toml] >= 6.5.0,< 8.0 |
|
|
|
mypy ==1.8.0 |
|
|
|
ruff ==0.2.0 |
|
|
|
ruff ==0.6.1 |
|
|
|
dirty-equals ==0.6.0 |
|
|
|
# TODO: once removing databases from tutorial, upgrade SQLAlchemy |
|
|
|
# probably when including SQLModel |
|
|
|
|
|
@ -196,9 +196,9 @@ async def get_sync_context_b_bg( |
|
|
|
tasks: BackgroundTasks, state: dict = Depends(context_b) |
|
|
|
): |
|
|
|
async def bg(state: dict): |
|
|
|
state[ |
|
|
|
"sync_bg" |
|
|
|
] = f"sync_bg set - b: {state['context_b']} - a: {state['context_a']}" |
|
|
|
state["sync_bg"] = ( |
|
|
|
f"sync_bg set - b: {state['context_b']} - a: {state['context_a']}" |
|
|
|
) |
|
|
|
|
|
|
|
tasks.add_task(bg, state) |
|
|
|
return state |
|
|
|
|
|
@ -36,7 +36,7 @@ def test_pydanticv2(): |
|
|
|
def return_fast_uuid(): |
|
|
|
asyncpg_uuid = MyUuid("a10ff360-3b1e-4984-a26f-d3ab460bdb51") |
|
|
|
assert isinstance(asyncpg_uuid, uuid.UUID) |
|
|
|
assert type(asyncpg_uuid) != uuid.UUID |
|
|
|
assert type(asyncpg_uuid) is not uuid.UUID |
|
|
|
with pytest.raises(TypeError): |
|
|
|
vars(asyncpg_uuid) |
|
|
|
return {"fast_uuid": asyncpg_uuid} |
|
|
@ -79,7 +79,7 @@ def test_pydanticv1(): |
|
|
|
def return_fast_uuid(): |
|
|
|
asyncpg_uuid = MyUuid("a10ff360-3b1e-4984-a26f-d3ab460bdb51") |
|
|
|
assert isinstance(asyncpg_uuid, uuid.UUID) |
|
|
|
assert type(asyncpg_uuid) != uuid.UUID |
|
|
|
assert type(asyncpg_uuid) is not uuid.UUID |
|
|
|
with pytest.raises(TypeError): |
|
|
|
vars(asyncpg_uuid) |
|
|
|
return {"fast_uuid": asyncpg_uuid} |
|
|
|