renaming InfluxDBConnection to InfluxDBSession

This commit is contained in:
Mose Mueller 2023-08-02 09:04:53 +02:00
parent 404375f251
commit 9ee6e7d83f
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
from .influxdb_connection import InfluxDBConnection from .influxdb_connection import InfluxDBSession
from .postgres_connection import PostgresDatabaseSession from .postgres_connection import PostgresDatabaseSession
__all__ = ["InfluxDBConnection", "PostgresDatabaseSession"] __all__ = ["InfluxDBSession", "PostgresDatabaseSession"]

View File

@ -18,7 +18,7 @@ from loguru import logger
from icon_service_base.database.config import InfluxDBConfig from icon_service_base.database.config import InfluxDBConfig
class InfluxDBConnection: class InfluxDBSession:
""" """
The `InfluxDBConnection` class serves as a context manager for a connection The `InfluxDBConnection` class serves as a context manager for a connection
to an InfluxDB server. This connection is established using credentials to an InfluxDB server. This connection is established using credentials