Skip to content

Commit

Permalink
Pourquoi c'était pas trigg localement ?
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianTremblay committed Sep 10, 2024
1 parent 356ebf9 commit 62e0175
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions BAC0/db/influxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import pytz

from ..core.utils.lookfordependency import influxdb_available
from ..core.utils.lookfordependency import influxdb_if_available
from ..core.utils.notes import note_and_log

if influxdb_available():

_INFLUX, _ = influxdb_if_available()
if _INFLUX:
from influxdb_client import Point, WriteOptions
from influxdb_client.client.influxdb_client_async import InfluxDBClientAsync
else:
Expand Down

0 comments on commit 62e0175

Please sign in to comment.