Skip to content

Commit

Permalink
Pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Nov 5, 2024
1 parent d052675 commit 7a71a4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions space2stats_api/cdk/aws_stack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from aws_cdk import Duration, Stack, CfnOutput
from aws_cdk import CfnOutput, Duration, Stack
from aws_cdk import aws_apigatewayv2 as apigatewayv2
from aws_cdk import aws_apigatewayv2_integrations as integrations
from aws_cdk import aws_certificatemanager as acm
Expand Down Expand Up @@ -57,9 +57,9 @@ def __init__(
)

CfnOutput(
self,
'ApiGatewayUrl',
key='ApiGatewayUrl',
self,
"ApiGatewayUrl",
key="ApiGatewayUrl",
value=http_api.url,
)

Expand Down
1 change: 1 addition & 0 deletions space2stats_api/cdk/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from typing import Optional

from pydantic_settings import BaseSettings


Expand Down

0 comments on commit 7a71a4f

Please sign in to comment.