Files
playwrite/gui/__init__.py
Misaka 3b7c00377f style: format all Python files with Black
Apply Black formatter to the entire codebase for consistent code style.

Co-Authored-By: Claude (glm-5) <noreply@anthropic.com>
2026-02-26 22:44:03 +08:00

32 lines
588 B
Python

"""
ERP 自动化工具 - GUI 模块
提供图形用户界面用于执行 ERP 系统自动化任务。
"""
__version__ = "1.0.0"
# 导出常用模块
from .base_tab import BaseTab
from .constants import (
WINDOW_SIZE,
MIN_WINDOW_SIZE,
POLL_INTERVAL_MS,
LOG_COLORS,
DEFAULT_FONT_FAMILY,
DEFAULT_FONT_SIZE,
)
from .utils import admin_only, require_session
__all__ = [
"BaseTab",
"WINDOW_SIZE",
"MIN_WINDOW_SIZE",
"POLL_INTERVAL_MS",
"LOG_COLORS",
"DEFAULT_FONT_FAMILY",
"DEFAULT_FONT_SIZE",
"admin_only",
"require_session",
]