We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef4197 commit ac274a0Copy full SHA for ac274a0
src/idom/__main__.py
@@ -1,5 +1,9 @@
1
+import warnings
2
+
3
from .cli import main
4
5
6
if __name__ == "__main__":
- main()
7
+ with warnings.catch_warnings():
8
+ warnings.simplefilter(DeprecationWarning)
9
+ main()
src/idom/config.py
@@ -76,5 +76,5 @@
76
"by default. For more information on changes to this feature flag, see: "
77
"https://github.com/idom-team/idom/issues/351"
78
),
79
- UserWarning,
+ DeprecationWarning,
80
)
0 commit comments