1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00
Files
core/homeassistant/components/twitch/const.py
Joost Lekkerkerker 326d80f4f7 Move Twitch constants to separate file (#92605)
* Move Twitch constants to separate file

* Move Twitch constants to separate file

* Move Twitch constants to separate file

* Update branch
2023-05-24 09:18:20 +02:00

11 lines
200 B
Python

"""Const for Twitch."""
import logging
from twitchAPI.twitch import AuthScope
LOGGER = logging.getLogger(__package__)
CONF_CHANNELS = "channels"
OAUTH_SCOPES = [AuthScope.USER_READ_SUBSCRIPTIONS]