Skip to content

Commit 2c37ba5

Browse files
committed
Add deprecation notice to shuffler module
1 parent 65e0786 commit 2c37ba5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ph_rando/shuffler/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from warnings import warn
2+
3+
warn(
4+
f'The module {__name__} is a proof-of-concept implementation, '
5+
'and will likely be replaced entirely in the future.',
6+
DeprecationWarning,
7+
stacklevel=2,
8+
)

0 commit comments

Comments
 (0)