mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 04:50:05 +00:00
Allow custom integrations to support application_credentials platform (#71129)
This commit is contained in:
@@ -98,9 +98,9 @@ class Integration:
|
||||
return self.manifest.get("quality_scale")
|
||||
|
||||
@property
|
||||
def config_flow(self) -> str:
|
||||
def config_flow(self) -> bool:
|
||||
"""Return if the integration has a config flow."""
|
||||
return self.manifest.get("config_flow")
|
||||
return self.manifest.get("config_flow", False)
|
||||
|
||||
@property
|
||||
def requirements(self) -> list[str]:
|
||||
|
||||
Reference in New Issue
Block a user