Skip to content

Commit

Permalink
fix: Add missing CONFIG_SCHEMA
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSelwyn committed Feb 12, 2024
1 parent a27db7b commit 4523fbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions custom_components/o365/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import json
import logging

import voluptuous as vol
import yaml
from homeassistant.const import CONF_ENABLED
from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue
Expand Down Expand Up @@ -34,6 +35,7 @@
from .schema import MULTI_ACCOUNT_SCHEMA
from .setup import do_setup

CONFIG_SCHEMA = vol.Schema({DOMAIN: MULTI_ACCOUNT_SCHEMA}, extra=vol.ALLOW_EXTRA)
_LOGGER = logging.getLogger(__name__)


Expand Down

0 comments on commit 4523fbc

Please sign in to comment.