From f61ac366f994c41e046d3fbc76c0a85ce881d270 Mon Sep 17 00:00:00 2001 From: Pavel Mackarichev Date: Thu, 12 Oct 2023 21:00:43 +0300 Subject: [PATCH] style: formatting --- odd_collector/adapters/opensearch/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/odd_collector/adapters/opensearch/client.py b/odd_collector/adapters/opensearch/client.py index 2a939036..0c1867ad 100644 --- a/odd_collector/adapters/opensearch/client.py +++ b/odd_collector/adapters/opensearch/client.py @@ -12,7 +12,6 @@ def __init__(self, config: OpensearchPlugin): username, password = config.username, config.password.get_secret_value() auth = (username, password) - self._os = OpenSearch( hosts=[f"{config.host}:{config.port}"], http_auth=auth,