15 lines
421 B
Python
15 lines
421 B
Python
import warnings
|
|
|
|
from ..callback import *
|
|
from ..utils import custom_warning_format
|
|
|
|
# back-compatibility 0.1
|
|
# Set the custom format for warnings
|
|
warnings.formatwarning = custom_warning_format
|
|
warnings.filterwarnings("always", category=DeprecationWarning)
|
|
warnings.warn(
|
|
f"'pina.callbacks' is deprecated and will be removed "
|
|
f"in future versions. Please use 'pina.callback' instead.",
|
|
DeprecationWarning,
|
|
)
|