Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed May 14, 2021
1 parent 29c820d commit e9b1a19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bin/devcontainer
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ case "${cmd}" in
fi
${docker} exec -it -w "${workdir}" "${container}" container "${cmd}"

if [[ "${cmd}" == "upgrade" ]]; then
if [[ "${cmd}" == "upgrade" || "${cmd}" == "update" \
|| "${cmd}" == "install" || "${cmd}" == "reinstall" ]]; then
bootstrap "${cmd}"
fi
;;
Expand Down
2 changes: 1 addition & 1 deletion custom_components/integration_blueprint/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class BlueprintOptionsFlowHandler(config_entries.OptionsFlow):
"""Blueprint config flow options handler."""

def __init__(self, config_entry: ConfigEntry):
"""Initialize HACS options flow."""
"""Initialize Blueprint options flow."""
self.config_entry = config_entry
self.options = dict(config_entry.options)

Expand Down

0 comments on commit e9b1a19

Please sign in to comment.