Skip to content

Commit

Permalink
fix doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
MacHu-GWU committed Jun 29, 2021
1 parent 0e657ba commit 2989566
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cottonformation/core/env.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

"""
AWS Environment
AWS Environment and Deployment component.
"""

import hashlib
Expand Down
2 changes: 2 additions & 0 deletions cottonformation/core/helpers/awslambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

class LambdaRuntime:
"""
Aws Lambda related constant helpers.
This data is based on https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
"""
nodejs14 = "nodejs14.x"
Expand Down
4 changes: 4 additions & 0 deletions cottonformation/core/model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

"""
This module implements the AWS Object used in CloudFormation template.
"""

import typing
from collections import OrderedDict
import attr
Expand Down
5 changes: 0 additions & 5 deletions cottonformation/core/tagging.py

This file was deleted.

5 changes: 5 additions & 0 deletions cottonformation/core/template.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# -*- coding: utf-8 -*-

"""
This module implements the core component CloudFormation Template. Many
black magic features are provided.
"""

import json
import attr
import typing
Expand Down

0 comments on commit 2989566

Please sign in to comment.