We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 777834f + 4216d80 commit ae387f6Copy full SHA for ae387f6
3 files changed
custom_components/poollab/poollab.py
@@ -6,8 +6,11 @@
6
7
API_ENDPOINT = "https://backend.labcom.cloud/graphql"
8
9
+import logging
10
from gql import Client, gql
11
from gql.transport.aiohttp import AIOHTTPTransport
12
+from gql.transport.requests import log as requests_logger
13
+requests_logger.setLevel(logging.WARNING)
14
15
# Measurement ranges according to https://poollab.org/static/manuals/poollab_manual_gb-fr-e-d-i.pdf
16
MEAS_RANGES_BY_SCENARIO = {
requirements.test.txt
@@ -1,3 +1,5 @@
1
+logging
2
+requests_toolbelt
3
gql
4
5
pytest
requirements.txt
@@ -1,2 +1,4 @@
homeassistant
0 commit comments