mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 21:50:28 +02:00
16 lines
410 B
Python
16 lines
410 B
Python
"""Legacy PyQt GUI module removed in favor of the web interface."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
class abogen: # pragma: no cover - legacy entry point
|
|
"""Placeholder for the removed PyQt GUI class."""
|
|
|
|
def __init__(self, *_args, **_kwargs):
|
|
raise RuntimeError(
|
|
"The PyQt desktop interface has been removed. Please use the web UI instead."
|
|
)
|
|
|
|
|
|
__all__ = ["abogen"]
|