Skip to content

Commit

Permalink
code quality fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Masters committed Dec 5, 2024
1 parent 3992387 commit 2725320
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions custom_components/ui_lovelace_minimalist/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,13 @@ async def configure_plugins(self) -> bool:

# Register
await self.hass.http.async_register_static_paths(
[StaticPathConfig(
"/ui_lovelace_minimalist/cards",
self.hass.config.path(f"{self.integration_dir}/cards"),
True)]
[
StaticPathConfig(
"/ui_lovelace_minimalist/cards",
self.hass.config.path(f"{self.integration_dir}/cards"),
True,
)
]
)

except Exception as exception:
Expand Down

0 comments on commit 2725320

Please sign in to comment.