Skip to content
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.

Commit

Permalink
Merge pull request #23 from DCSBL/DCSBL-patch-1
Browse files Browse the repository at this point in the history
Removed maximum product name length
  • Loading branch information
DCSBL authored Mar 16, 2021
2 parents 14159b3 + f2e9544 commit 10425dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/homewizard_energy/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ async def async_step_discovery_confirm(self, user_input=None):
schema = Schema(
{
Required("name", default=self.context["product_name"]): All(
str, Length(min=1, max=20)
str, Length(min=1)
)
}
)
Expand Down

0 comments on commit 10425dc

Please sign in to comment.