Skip to content

Commit 620bfcb

Browse files
authored
🐛 bugfix parenthesis error mismatch
1 parent 0509d9a commit 620bfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg-name/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
# ! raise an error during import if any hard package is missing
3131
if missing_dependencies:
32-
raise ImportError(f"Missing hard dependencies: {", ".join(missing_dependencies)}")
32+
raise ImportError(f"Missing hard dependencies: {missing_dependencies}")
3333

3434
# init-time Option Registrations
3535
from .api import * # noqa: F401, F403 # pyright: ignore[reportMissingImports]

0 commit comments

Comments
 (0)