From b5e86cc3dbcfd685f8b7327afcbb6d60a1dd72c4 Mon Sep 17 00:00:00 2001 From: pyranota <92104930+pyranota@users.noreply.github.com> Date: Thu, 27 Mar 2025 00:11:28 +0100 Subject: [PATCH] nit(python): add azure keyvault and storage to imports mapping (#5517) * feat(python): fully qualified imports mapping * make contributor-friendly * use more intuitive sign * map the most of the google and azure * nit(python): add azure keyvault and storage to imports mapping --- backend/parsers/windmill-parser-py-imports/src/mapping.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/parsers/windmill-parser-py-imports/src/mapping.rs b/backend/parsers/windmill-parser-py-imports/src/mapping.rs index 57bc5bd37e..11677ffbfd 100644 --- a/backend/parsers/windmill-parser-py-imports/src/mapping.rs +++ b/backend/parsers/windmill-parser-py-imports/src/mapping.rs @@ -323,6 +323,8 @@ pub static FULL_IMPORTS_MAP: PyMap = phf_map! { "azure.mgmt.regionmove" => "azure-mgmt-regionmove", "azure.mgmt.edgegateway" => "azure-mgmt-edgegateway", "azure.mgmt.nspkg" => "azure-mgmt-nspkg", + "azure.keyvault.secrets" => "azure-keyvault-secrets", + "azure.storage.blob" => "azure-storage-blob", // Add new entry here ^ };