Skip to content

Commit e8f3b46

Browse files
committed
refine coding style
1 parent ba05a45 commit e8f3b46

File tree

10 files changed

+34
-0
lines changed

10 files changed

+34
-0
lines changed

opensearch-serverless/app.py

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

47
from cdk_stacks import (

opensearch-serverless/cdk_stacks/collection_pipeline_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 (

opensearch-serverless/cdk_stacks/opensearch_serverless_ingestion.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 (

opensearch-serverless/cdk_stacks/opensearch_serverless_ts.py

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

47
import aws_cdk as cdk

opensearch/app.py

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

47
from cdk_stacks import (

opensearch/cdk_stacks/bastion_host.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 (

opensearch/cdk_stacks/ops.py

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

47
import aws_cdk as cdk

opensearch/cdk_stacks/ops_domain_ingestion.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 (

opensearch/cdk_stacks/ops_domain_pipeline_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 (

opensearch/cdk_stacks/vpc.py

Lines changed: 2 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 aws_cdk as cdk
46

0 commit comments

Comments
 (0)