We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0615ab commit 4bff693Copy full SHA for 4bff693
src/idom/__main__.py
@@ -1,9 +1,5 @@
1
-import warnings
2
-
3
from .cli import main
4
5
6
if __name__ == "__main__":
7
- with warnings.catch_warnings():
8
- warnings.simplefilter(DeprecationWarning)
9
- main()
+ main()
src/idom/config.py
@@ -66,15 +66,3 @@
66
67
For more information on changes to this feature flag see: https://github.com/idom-team/idom/issues/351
68
"""
69
70
-if not IDOM_FEATURE_INDEX_AS_DEFAULT_KEY.get(): # pragma: no cover
71
- from warnings import warn
72
73
- warn(
74
- (
75
- "In a future release 'IDOM_FEATURE_INDEX_AS_DEFAULT_KEY' will be turned on "
76
- "by default. For more information on changes to this feature flag, see: "
77
- "https://github.com/idom-team/idom/issues/351"
78
- ),
79
- DeprecationWarning,
80
- )
0 commit comments