Skip to content

Commit

Permalink
Use relative python imports in egress_backend
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Jun 20, 2023
1 parent c17df3d commit 01a37e2
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions egress_backend/egress_backend_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,16 @@
from cdk_nag import NagSuppressions
from constructs import Construct

from egress_backend.components.amplify_waf_addon.amplify_waf_addon import (
CustomAmplifyDistribution,
)
from egress_backend.components.email_configuration_set.email_configuration_set_cr import (
from .components.amplify_waf_addon.amplify_waf_addon import CustomAmplifyDistribution
from .components.email_configuration_set.email_configuration_set_cr import (
EmailConfigurationSetCustomResource,
)
from egress_backend.components.email_configuration_set_event_dest.email_configuration_set_event_dest_cr import (
from .components.email_configuration_set_event_dest.email_configuration_set_event_dest_cr import (
EmailConfigurationSetEventDestinationCustomResource,
)
from egress_backend.components.email_identity.email_identity_verification_cr import (
from .components.email_identity.email_identity_verification_cr import (
EmailIdentityVerificationCustomResource,
)

from .components.utils import convert_bool


Expand Down

0 comments on commit 01a37e2

Please sign in to comment.