Skip to content
Snippets Groups Projects

Develop

Closed Huihui, Jonathan requested to merge develop into main
5 files
+ 50
13
Compare changes
  • Side-by-side
  • Inline
Files
5
"""Scratch file for showing how the mixins get used."""
from influxdb import InfluxDBClient
try:
from influxdb import InfluxDBClient
except ImportError:
import sys
from common.logz import create_logger
logger = create_logger()
logger.warn(
"Influx extra must be installed to use influx mixin. "
)
sys.exit(1)
from common.env import check_environment as ce
Loading