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 975661c commit 9adc6c8Copy full SHA for 9adc6c8
robotcode/language_server/robotframework/diagnostics/imports_manager.py
@@ -877,13 +877,20 @@ async def get_libdoc_for_library_import(
877
sentinel: Any = None,
878
variables: Optional[Dict[str, Any]] = None,
879
) -> LibraryDoc:
880
- meta, source = await self.get_library_meta(
+ source = await self.find_library(
881
name,
882
base_dir,
883
variables,
884
)
885
886
async def _get_libdoc() -> LibraryDoc:
887
+
888
+ meta, source = await self.get_library_meta(
889
+ name,
890
+ base_dir,
891
+ variables,
892
+ )
893
894
self._logger.debug(lambda: f"Load Library {source}{repr(args)}")
895
if meta is not None:
896
meta_file = Path(self.lib_doc_cache_path, meta.filepath_base.with_suffix(".meta.json"))
0 commit comments