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

🎨 web-api: Simpler error models and auto-generated errors in OAS #6855

Merged
merged 13 commits into from
Nov 28, 2024
Prev Previous commit
Next Next commit
minor
  • Loading branch information
pcrespov committed Nov 27, 2024
commit 1a5dee9fa615804333d2b3d15d3a56ff029daf19
6 changes: 3 additions & 3 deletions services/web/server/tests/unit/with_dbs/conftest.py
Original file line number Diff line number Diff line change
@@ -15,11 +15,11 @@
import random
import sys
import textwrap
from collections.abc import AsyncIterator, Awaitable, Callable, Iterator
from collections.abc import AsyncIterable, AsyncIterator, Awaitable, Callable, Iterator
from copy import deepcopy
from decimal import Decimal
from pathlib import Path
from typing import Any, AsyncIterable, Final
from typing import Any, Final
from unittest import mock
from unittest.mock import AsyncMock, MagicMock

@@ -853,7 +853,7 @@ async def all_product_prices(

result = {}
for product_name in all_products_names:
usd_or_none = product_price.get(product_name, None)
usd_or_none = product_price.get(product_name)
if usd_or_none is not None:
await _pre_connection.execute(
products_prices.insert().values(