mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 05:29:14 +00:00

* Remove duplicate object key in strings.json * Remove async_entry_has_scopes check This is not needed. This was copied from google calendar integration where it was needed to reauth when the scope changed. * Remove unused constant in application_credentials * Move constant to the file used * fix warning use-implicit-booleaness-not-len * Remove not accessed parameters * Revert "Remove async_entry_has_scopes check" This reverts commit 63e24f84cc1c0250ee5fa57c7f624bbed12e0221.
8 lines
202 B
Python
8 lines
202 B
Python
"""Constants for Google Sheets integration."""
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "google_sheets"
|
|
|
|
DEFAULT_NAME = "Google Sheets"
|
|
DEFAULT_ACCESS = "https://www.googleapis.com/auth/drive.file"
|