Skip to content

Commit 4bff693

Browse files
committed
no warning until we have an upgrade path
1 parent b0615ab commit 4bff693

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

src/idom/__main__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
import warnings
2-
31
from .cli import main
42

53

64
if __name__ == "__main__":
7-
with warnings.catch_warnings():
8-
warnings.simplefilter(DeprecationWarning)
9-
main()
5+
main()

src/idom/config.py

-12
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,3 @@
6666
6767
For more information on changes to this feature flag see: https://github.com/idom-team/idom/issues/351
6868
"""
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

Comments
 (0)