mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
chore: add comments
This commit is contained in:
parent
b932b96e0c
commit
32b1fb91c3
1 changed files with 2 additions and 0 deletions
|
|
@ -88,6 +88,7 @@ def apply_secrets_manager_config():
|
|||
Retrieve configuration from AWS Secrets Manager and override existing settings
|
||||
"""
|
||||
try:
|
||||
# Dynamic imports to avoid circular dependency (secret_providers imports config_loader)
|
||||
from pr_agent.secret_providers import get_secret_provider
|
||||
from pr_agent.log import get_logger
|
||||
|
||||
|
|
@ -118,6 +119,7 @@ def apply_secrets_to_config(secrets: dict):
|
|||
Apply secret dictionary to configuration
|
||||
"""
|
||||
try:
|
||||
# Dynamic import to avoid potential circular dependency
|
||||
from pr_agent.log import get_logger
|
||||
except:
|
||||
def get_logger():
|
||||
|
|
|
|||
Loading…
Reference in a new issue