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",