0.7.7 forgot what the actual fix was
This commit is contained in:
parent
96a65c38e3
commit
0ca2fde687
3 changed files with 4 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ license = "Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"suou==0.7.5",
|
"suou==0.7.6",
|
||||||
"itsdangerous",
|
"itsdangerous",
|
||||||
"toml",
|
"toml",
|
||||||
"pydantic",
|
"pydantic",
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ from .redact import redact_url_password
|
||||||
from .http import WantsContentType
|
from .http import WantsContentType
|
||||||
from .color import chalk
|
from .color import chalk
|
||||||
|
|
||||||
__version__ = "0.7.6"
|
__version__ = "0.7.7"
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
|
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ from typing import Callable, TypeVar
|
||||||
from sqlalchemy import Select, Table, func, select
|
from sqlalchemy import Select, Table, func, select
|
||||||
from sqlalchemy.orm import DeclarativeBase, lazyload
|
from sqlalchemy.orm import DeclarativeBase, lazyload
|
||||||
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession, create_async_engine
|
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession, create_async_engine
|
||||||
|
from flask_sqlalchemy.pagination import Pagination
|
||||||
|
|
||||||
from suou.exceptions import NotFoundError
|
from suou.exceptions import NotFoundError
|
||||||
from suou.glue import glue
|
from suou.glue import glue
|
||||||
|
|
@ -122,7 +123,7 @@ current_session: ContextVar[AsyncSession] = ContextVar('current_session')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class AsyncSelectPagination(flask_sqlalchemy.pagination.Pagination):
|
class AsyncSelectPagination(Pagination):
|
||||||
"""
|
"""
|
||||||
flask_sqlalchemy.SelectPagination but asynchronous.
|
flask_sqlalchemy.SelectPagination but asynchronous.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue