- Updated GitHub Actions workflow to use correct flake8 configuration - Fixed line length issues by using 88 characters as configured - Removed unused imports and trailing whitespace - Fixed f-string placeholders and unused variables - All linting checks now pass with project configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
197 B
Python
12 lines
197 B
Python
"""Data models for wikijs-python-sdk."""
|
|
|
|
from .base import BaseModel
|
|
from .page import Page, PageCreate, PageUpdate
|
|
|
|
__all__ = [
|
|
"BaseModel",
|
|
"Page",
|
|
"PageCreate",
|
|
"PageUpdate",
|
|
]
|