Skip to content

Commit 677e24d

Browse files
committed
Fix import error
1 parent a02601b commit 677e24d

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# ruff: noqa: F401
2-
from .external_aws_secrets_chart import ExternalAwsSecretsChart
3-
from .external_secret import ExternalSecret, ExternalSecretSource
1+
# ruff: noqa: F401, I001
2+
# This will raise a circular import error unless the imports
3+
# are in this exact order, so isort needs to be ingnored.
44
from .external_secrets_aws_secret_store import ExternalSecretsAwsSecretStore
5+
from .external_secret import ExternalSecretSource, ExternalSecret
6+
from .external_aws_secrets_chart import ExternalAwsSecretsChart

0 commit comments

Comments
 (0)