Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ dependencies = [
"pytest-xdist",
"pytest-html",
"pytest-cov",
"pythonnet",
"mypy",
"ruff",
"GitPython",
Expand Down
2 changes: 1 addition & 1 deletion src/PlatynUI/ui/runtime/dotnet_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _ensure_loaded(cls) -> None:
clr.AddReference(str(debug_assembly_path)[:-4])
elif runtime_assembly_path.exists():
logger.debug(f"Loading PlatynUI from {runtime_assembly_path}") # noqa: G004
clr.AddReference(str(debug_assembly_path)[:-4])
clr.AddReference(str(runtime_assembly_path)[:-4])
else:
logger.error(
"Load PlatynUI failed: Could not find the assembly "
Expand Down
Loading