From fc67201bc4ba3b409fa828f99469516235ad4f07 Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Mon, 16 Dec 2024 06:56:49 -0700 Subject: [PATCH] moving the ParameterStore import to avoid circular imports --- src/sageworks/core/cloud_platform/aws/aws_meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sageworks/core/cloud_platform/aws/aws_meta.py b/src/sageworks/core/cloud_platform/aws/aws_meta.py index f25240c0..d65d6772 100644 --- a/src/sageworks/core/cloud_platform/aws/aws_meta.py +++ b/src/sageworks/core/cloud_platform/aws/aws_meta.py @@ -15,7 +15,6 @@ from sageworks.utils.config_manager import ConfigManager from sageworks.utils.datetime_utils import datetime_string from sageworks.utils.aws_utils import not_found_returns_none, aws_throttle, aws_tags_to_dict -from sageworks.api.parameter_store import ParameterStore class AWSMeta: @@ -34,6 +33,7 @@ def __init__(self): self.cm = ConfigManager() # Parameter Store for Pipelines + from sageworks.api.parameter_store import ParameterStore self.pipeline_prefix = "/sageworks/pipelines" self.param_store = ParameterStore()