Skip to content

Commit

Permalink
Fixes to get merge running.
Browse files Browse the repository at this point in the history
  • Loading branch information
eseglem committed Nov 11, 2023
1 parent edb6839 commit 679058a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ludeeus/integration_blueprint",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.10-bullseye",
"image": "mcr.microsoft.com/devcontainers/python:3.11-bullseye",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
8123
Expand All @@ -27,9 +27,6 @@
"editor.tabSize": 4,
"python.pythonPath": "/usr/bin/python3",
"python.analysis.autoSearchPaths": false,
"python.linting.pylintEnabled": false,
"python.linting.enabled": true,
"python.formatting.provider": "none",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wattbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
_LOGGER.debug(", ".join([str(v) for _, v in hass.data[DOMAIN_DATA].items()]))
_LOGGER.debug(repr(hass.data[DOMAIN_DATA]))
for _, wattbox in hass.data[DOMAIN_DATA].items():
_LOGGER.debug("%s has %s outlets%s", wattbox, len(wattbox.outlets))
_LOGGER.debug("%s has %s outlets", wattbox, len(wattbox.outlets))
for outlet in wattbox.outlets:
_LOGGER.debug("Outlet: %s - %s", outlet, repr(outlet))

Expand Down
4 changes: 1 addition & 3 deletions custom_components/wattbox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
"integration_type": "device",
"documentation": "https://github.com/eseglem/hass-wattbox",
"issue_tracker": "https://github.com/eseglem/hass-wattbox/issues",
"dependencies": [
"component"
],
"dependencies": [],
"codeowners": [
"@eseglem"
],
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
homeassistant==2023.5.0
homeassistant==2023.8.0
homeassistant-stubs==2023.8.0
pip>=21.0,<23.2
homeassistant-stubs
pywattbox [http, ip] @ git+https://github.com/eseglem/pywattbox@develop#pywattbox==0.6.0

0 comments on commit 679058a

Please sign in to comment.