11 lines
335 B
Python
11 lines
335 B
Python
"""
|
|
CountingsTab removed — functionality moved to unified GUI (`pyucc.gui.gui.App`).
|
|
|
|
This module is a backward-compatible stub: importing it will raise an informative
|
|
ImportError pointing users to the new unified UI.
|
|
"""
|
|
|
|
raise ImportError(
|
|
"pyucc.gui.countings_tab is deprecated — use pyucc.gui.gui.App unified UI instead"
|
|
)
|