We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39357f6 commit 4ff422fCopy full SHA for 4ff422f
horde_worker_regen/__init__.py
@@ -9,21 +9,3 @@
9
ASSETS_FOLDER_PATH = Path(__file__).parent / "assets"
10
11
__version__ = "10.1.2"
12
-
13
14
-import pkg_resources # noqa: E402
15
16
17
-def check_hordelib_not_installed() -> None:
18
- """Check that hordelib is not installed."""
19
- try:
20
- pkg_resources.get_distribution("hordelib")
21
- raise RuntimeError(
22
- "hordelib is installed. Please uninstall it before running this package. "
23
- "`hordelib` has been renamed to `horde_engine`.",
24
- )
25
- except pkg_resources.DistributionNotFound:
26
- pass
27
28
29
-check_hordelib_not_installed()
0 commit comments