Skip to content

Commit

Permalink
moving the ParameterStore import to avoid circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 16, 2024
1 parent f9c1cab commit fc67201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sageworks/core/cloud_platform/aws/aws_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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()

Expand Down

0 comments on commit fc67201

Please sign in to comment.