Skip to content

Commit 1fe7f5f

Browse files
committed
refine coding style
1 parent 2db4933 commit 1fe7f5f

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

cdk_stacks/glue_job_role.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
4+
15
import aws_cdk as cdk
26

37
from aws_cdk import (

cdk_stacks/glue_stream_data_schema.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
4+
15
import aws_cdk as cdk
26

37
from aws_cdk import (

cdk_stacks/glue_streaming_job.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
4+
15
import aws_cdk as cdk
26

37
from aws_cdk import (
@@ -7,6 +11,7 @@
711
)
812
from constructs import Construct
913

14+
1015
class GlueStreamingJobStack(Stack):
1116

1217
def __init__(self, scope: Construct, construct_id: str, glue_job_role, kinesis_stream, **kwargs) -> None:

cdk_stacks/kds.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
24

35
import random
46
import string
@@ -14,6 +16,7 @@
1416

1517
random.seed(23)
1618

19+
1720
class KdsStack(Stack):
1821

1922
def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:

cdk_stacks/lakeformation_permissions.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
4+
15
import aws_cdk as cdk
26

37
from aws_cdk import (
@@ -6,6 +10,7 @@
610
)
711
from constructs import Construct
812

13+
914
class DataLakePermissionsStack(Stack):
1015

1116
def __init__(self, scope: Construct, construct_id: str, glue_job_role, **kwargs) -> None:

cdk_stacks/s3.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/usr/bin/env python3
2+
# -*- encoding: utf-8 -*-
3+
# vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab
4+
15
from urllib.parse import urlparse
26

37
import aws_cdk as cdk

0 commit comments

Comments
 (0)