8 lines
150 B
Python
8 lines
150 B
Python
|
|
import warnings
|
||
|
|
|
||
|
|
warnings.warn(
|
||
|
|
"Please update your 'hppfcl' imports to 'coal'", category=DeprecationWarning
|
||
|
|
)
|
||
|
|
|
||
|
|
from coal.viewer import * # noqa
|