mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
10 lines
253 B
Python
10 lines
253 B
Python
"""Legacy PyQt-based chapter selection dialog has been removed."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def __getattr__(name: str):
|
|
raise AttributeError(
|
|
"The PyQt chapter selection dialog was removed. Use the web interface instead."
|
|
)
|