Ruff check

This commit is contained in:
Eric Hare
2026-05-08 17:53:43 -07:00
parent cb651c343a
commit fe117aa387
2 changed files with 3 additions and 3 deletions

View File

@ -100,8 +100,7 @@ async def reload_extension_bundle(extension_id: str, bundle_name: str) -> dict:
error=ExtensionError(
code="reload-bundle-not-installed",
message=(
f"Bundle {bundle_name!r} is registered to extension "
f"{record.extension_id!r}, not {extension_id!r}."
f"Bundle {bundle_name!r} is registered to extension {record.extension_id!r}, not {extension_id!r}."
),
location=f"{extension_id}/{bundle_name}",
content=bundle_name,

View File

@ -161,7 +161,8 @@ const BundleHeaderActionsInner = ({
(state) => state.enableExtensionReload,
);
const visible = useMemo(
() => ENABLE_EXTENSION_RELOAD && enableReloadRuntime && Boolean(extensionId),
() =>
ENABLE_EXTENSION_RELOAD && enableReloadRuntime && Boolean(extensionId),
[enableReloadRuntime, extensionId],
);