Skip to content

Commit

Permalink
Fix errors when trying to load integration
Browse files Browse the repository at this point in the history
Bump to 0.0.3
  • Loading branch information
tobi1449 committed Nov 11, 2023
1 parent cbb461c commit 6437807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/scd4x_gpio_integration/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def _show_config_form(self, user_input): # pylint: disable=unused-argumen
vol.Required(CONF_I2C, default=user_input[CONF_I2C]): vol.Coerce(str),
vol.Optional(CONF_ALTITUDE): vol.All(vol.Coerce(int), vol.Range(min=-100, max=10000)),
vol.Optional(CONF_AVERAGE_WINDOW): vol.All(vol.Coerce(int), vol.Range(min=1)),
vol.Optional(CONF_TEMPERATURE_OFFSET, default=4): vol.All(vol.Coerce(float), vol.Number(scale=2), vol.Range(min=0, max=10)),
vol.Optional(CONF_TEMPERATURE_OFFSET, default=4): vol.All(vol.Coerce(float), vol.Range(min=0, max=10)),
}
),
errors=self._errors,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/scd4x_gpio_integration/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"documentation": "https://github.com/tobi1449/scd4x_gpio_integration",
"iot_class": "local_polling",
"issue_tracker": "https://github.com/tobi1449/scd4x_gpio_integration/issues",
"version": "0.0.2",
"version": "0.0.3",
"config_flow": true,
"requirements": [
"sensirion-i2c-scd",
Expand Down

0 comments on commit 6437807

Please sign in to comment.