Skip to content

Commit

Permalink
Disable concord232 integration (home-assistant#121974)
Browse files Browse the repository at this point in the history
* Disable concord232 integration

* Fix
  • Loading branch information
joostlek authored Jul 15, 2024
1 parent e9d4c03 commit 026538b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion homeassistant/components/concord232/alarm_control_panel.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Support for Concord232 alarm control panels."""

# mypy: ignore-errors
from __future__ import annotations

import datetime
import logging

from concord232 import client as concord232_client
# from concord232 import client as concord232_client
import requests
import voluptuous as vol

Expand Down
3 changes: 2 additions & 1 deletion homeassistant/components/concord232/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
"""Support for exposing Concord232 elements as sensors."""

# mypy: ignore-errors
from __future__ import annotations

import datetime
import logging

from concord232 import client as concord232_client
# from concord232 import client as concord232_client
import requests
import voluptuous as vol

Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/concord232/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"domain": "concord232",
"name": "Concord232",
"codeowners": [],
"disabled": "This integration is disabled because it uses non-open source code to operate.",
"documentation": "https://www.home-assistant.io/integrations/concord232",
"iot_class": "local_polling",
"loggers": ["concord232", "stevedore"],
Expand Down
5 changes: 5 additions & 0 deletions homeassistant/components/concord232/ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extend = "../../../pyproject.toml"

lint.extend-ignore = [
"F821"
]
3 changes: 0 additions & 3 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -669,9 +669,6 @@ colorlog==6.8.2
# homeassistant.components.color_extractor
colorthief==0.2.1

# homeassistant.components.concord232
concord232==0.15

# homeassistant.components.upc_connect
connect-box==0.3.1

Expand Down
3 changes: 0 additions & 3 deletions script/licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ def from_dict(cls, data: dict[str, str]) -> PackageDefinition:
"asterisk_mbox": AwesomeVersion(
"0.5.0"
), # No license, integration is deprecated and scheduled for removal in 2024.9.0
"concord232": AwesomeVersion(
"0.15"
), # No license https://github.com/JasonCarter80/concord232/issues/19
"mficlient": AwesomeVersion(
"0.3.0"
), # No license https://github.com/kk7ds/mficlient/issues/4
Expand Down

0 comments on commit 026538b

Please sign in to comment.