20 lines
538 B
Python
20 lines
538 B
Python
"""Facade mixin composing focused config/profile/runtime controller mixins."""
|
|
|
|
from python_app.gui.controllers.app_window_config import (
|
|
AppWindowConfigProfileIOMixin,
|
|
AppWindowConfigStateBuildersMixin,
|
|
AppWindowLiveProcessingMixin,
|
|
AppWindowRadarLimitsMixin,
|
|
)
|
|
|
|
|
|
class AppWindowConfigMixin(
|
|
AppWindowConfigStateBuildersMixin,
|
|
AppWindowConfigProfileIOMixin,
|
|
AppWindowLiveProcessingMixin,
|
|
AppWindowRadarLimitsMixin,
|
|
):
|
|
"""Backward-compatible facade for AppWindow config-related behavior."""
|
|
|
|
pass
|