mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
10 lines
270 B
Python
10 lines
270 B
Python
"""Legacy PyQt queue manager GUI removed."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def __getattr__(name: str): # pragma: no cover - compatibility shim
|
|
raise AttributeError(
|
|
"The PyQt queue manager GUI has been removed. Use the web dashboard instead."
|
|
)
|