Skip to content

Commit

Permalink
maint: Remove linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSelwyn committed Oct 28, 2023
1 parent 193b255 commit 9400475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/o365/classes/mailsensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from homeassistant.components.sensor import SensorEntity

from O365.mailbox import ExternalAudience # pylint: disable=no-name-in-module
from O365 import mailbox # pylint: disable=no-name-in-module

from ..const import (
ATTR_ATTRIBUTES,
Expand Down Expand Up @@ -185,7 +185,7 @@ def auto_reply_enable(
internal_reply,
start=None,
end=None,
external_audience=ExternalAudience.ALL,
external_audience=mailbox.ExternalAudience.ALL,
):
"""Enable out of office autoreply."""
if not self._validate_autoreply_permissions():
Expand Down

0 comments on commit 9400475

Please sign in to comment.