From a3ad65680cebfcfbf63a737423a8438b71208b8a Mon Sep 17 00:00:00 2001 From: wvandeun Date: Wed, 18 Jun 2025 20:54:02 +0200 Subject: [PATCH] fixes the import path for the Attribute class --- changelog/fixes.attribute_import_path.md | 1 + infrahub_sdk/node/__init__.py | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 changelog/fixes.attribute_import_path.md diff --git a/changelog/fixes.attribute_import_path.md b/changelog/fixes.attribute_import_path.md new file mode 100644 index 00000000..d04fcd80 --- /dev/null +++ b/changelog/fixes.attribute_import_path.md @@ -0,0 +1 @@ +Fixes the import path of the Attribute class diff --git a/infrahub_sdk/node/__init__.py b/infrahub_sdk/node/__init__.py index a2d71a87..2a1c39e5 100644 --- a/infrahub_sdk/node/__init__.py +++ b/infrahub_sdk/node/__init__.py @@ -1,5 +1,6 @@ from __future__ import annotations +from .attribute import Attribute from .constants import ( ARTIFACT_DEFINITION_GENERATE_FEATURE_NOT_SUPPORTED_MESSAGE, ARTIFACT_FETCH_FEATURE_NOT_SUPPORTED_MESSAGE, @@ -25,6 +26,7 @@ "PROPERTIES_FLAG", "PROPERTIES_OBJECT", "SAFE_VALUE", + "Attribute", "InfrahubNode", "InfrahubNodeBase", "InfrahubNodeSync",