File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- import warnings
2
-
3
1
"""
4
2
TSignal - Python Signal/Slot Implementation (Deprecated - Use pynnex instead)
5
3
"""
6
4
7
- warnings .warn (
8
- "The tsignal package is deprecated as of version 0.5.x. "
9
- "Please use the pynnex package instead. "
10
- "For more information, visit https://github.com/nexconnectio/pynnex" ,
11
- DeprecationWarning ,
12
- )
5
+ import warnings
13
6
14
7
from .core import (
15
8
t_with_signals ,
22
15
from .utils import t_signal_log_and_raise_error
23
16
from .contrib .patterns .worker .decorators import t_with_worker
24
17
18
+ warnings .warn (
19
+ "The tsignal package is deprecated as of version 0.5.x. "
20
+ "Please use the pynnex package instead. "
21
+ "For more information, visit https://github.com/nexconnectio/pynnex" ,
22
+ DeprecationWarning ,
23
+ )
24
+
25
25
__version__ = "0.5.0"
26
26
27
27
__all__ = [
You can’t perform that action at this time.
0 commit comments