mirror of
https://github.com/pocketpaw/pocketpaw.git
synced 2026-05-13 21:21:53 +00:00
- Auto-fix 155 errors (import sorting, annotations, deprecated imports) - Format 87 files with ruff format for line length compliance - Fix 15 F401 unused imports (add __all__ for re-exports, remove truly unused) - Fix 7 F841 unused variables (prefix with _) - Fix 2 F821 undefined names (add missing imports) - Fix 3 E402 module-level imports not at top - Fix 2 UP042 str+Enum → StrEnum - Fix 1 E712 == False comparison - Fix remaining 51 E501 line-too-long in string literals and expressions Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
452 B
Python
21 lines
452 B
Python
"""Auth domain — re-exports for backward compatibility."""
|
|
|
|
from ee.cloud.auth.core import ( # noqa: F401
|
|
SECRET,
|
|
TOKEN_LIFETIME,
|
|
UserCreate,
|
|
UserManager,
|
|
UserRead,
|
|
bearer_backend,
|
|
cookie_backend,
|
|
current_active_user,
|
|
current_optional_user,
|
|
fastapi_users,
|
|
get_jwt_strategy,
|
|
get_user_db,
|
|
get_user_manager,
|
|
seed_admin,
|
|
seed_workspace,
|
|
)
|
|
from ee.cloud.auth.router import router # noqa: F401
|