0.14.0a4 fix imports

This commit is contained in:
Yusur 2026-07-04 15:44:18 +02:00
parent b239d0eaca
commit 9b4b57a391
2 changed files with 4 additions and 2 deletions

View file

@ -41,7 +41,7 @@ from .color import OKLabColor, chalk, WebColor, RGBColor, LinearRGBColor, \
from .mat import Matrix from .mat import Matrix
from .argparse import LetterSubparsers from .argparse import LetterSubparsers
__version__ = "0.14.0a3" __version__ = "0.14.0a4"
__all__ = ( __all__ = (
'ColorFormatter', 'ColorFormatter',

View file

@ -157,7 +157,8 @@ def require_auth_base(cls: type[DeclarativeBase], *, src: AuthSrc, column: str |
from .asyncio import SQLAlchemy, async_query, SessionWrapper, AsyncSelectPagination from .asyncio import SQLAlchemy, async_query, SessionWrapper, AsyncSelectPagination
from .orm import ( from .orm import (
id_column, snowflake_column, match_column, match_constraint, bool_column, declarative_base, parent_children, id_column, snowflake_column, match_column, match_constraint, bool_column, declarative_base, parent_children,
author_pair, age_pair, bound_fk, unbound_fk, want_column, a_relationship, BitSelector, secret_column, username_column author_pair, age_pair, bound_fk, unbound_fk, want_column, a_relationship, BitSelector, secret_column, username_column,
ascii_column
) )
try: try:
@ -172,6 +173,7 @@ __all__ = (
'match_column', 'match_constraint', 'bool_column', 'parent_children', 'match_column', 'match_constraint', 'bool_column', 'parent_children',
'author_pair', 'age_pair', 'bound_fk', 'unbound_fk', 'want_column', 'author_pair', 'age_pair', 'bound_fk', 'unbound_fk', 'want_column',
'a_relationship', 'BitSelector', 'secret_column', 'username_column', 'a_relationship', 'BitSelector', 'secret_column', 'username_column',
'ascii_column',
# .asyncio # .asyncio
'SQLAlchemy', 'AsyncSelectPagination', 'async_query', 'SessionWrapper' 'SQLAlchemy', 'AsyncSelectPagination', 'async_query', 'SessionWrapper'
) )