Skip to content

Commit 65cdcda

Browse files
committed
Remove re-export of local_uuid
Before this patch, the `pytest` calls in unit testing raise the `DeprecationWarning` from `case_utils.local_uuid`. E.g. both of these test files would raise the warning: (test1.py) ```python def test_foo() -> None: import case_utils ``` ```bash pytest test1.py # Logs deprecation warning. ``` (test2.py) ```python import case_utils def test_foo() -> None: pass ``` ```bash pytest test2.py # Logs deprecation warning. ``` This patch removes the module re-export. Signed-off-by: Alex Nelson <[email protected]>
1 parent d8a8b08 commit 65cdcda

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

case_utils/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@
1515
# We would appreciate acknowledgement if the software is used.
1616

1717
__version__ = "0.14.0"
18-
19-
from . import local_uuid # noqa: F401

0 commit comments

Comments
 (0)