mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Added canonical import path for names of 'sqlite3' module
This commit is contained in:
@@ -69,6 +69,10 @@ public class PyStdlibCanonicalPathProvider implements PyCanonicalPathProvider {
|
||||
result.addAll(components);
|
||||
return QualifiedName.fromComponents(result);
|
||||
}
|
||||
else if (head.equals("_sqlite3")) {
|
||||
components.set(0, "sqlite3");
|
||||
return QualifiedName.fromComponents(components);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user