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.
1 parent e8d62bb commit c5ef00cCopy full SHA for c5ef00c
backend/onyx/connectors/confluence/onyx_confluence.py
@@ -26,7 +26,7 @@
26
from urllib.parse import quote
27
28
import bs4
29
-from atlassian import Confluence
+from atlassian import Confluence # type:ignore
30
from redis import Redis
31
from requests import HTTPError
32
@@ -212,8 +212,6 @@ def _probe_connection(
212
self,
213
**kwargs: Any,
214
) -> None:
215
- from atlassian import Confluence # type:ignore[import-untyped]
216
-
217
merged_kwargs = {**self.shared_base_kwargs, **kwargs}
218
# add special timeout to make sure that we don't hang indefinitely
219
merged_kwargs["timeout"] = self.PROBE_TIMEOUT
0 commit comments