diff --git a/workshop/content/30-python/20-create-project/300-structure.md b/workshop/content/30-python/20-create-project/300-structure.md index e3d2b28ea..37d228a74 100644 --- a/workshop/content/30-python/20-create-project/300-structure.md +++ b/workshop/content/30-python/20-create-project/300-structure.md @@ -15,7 +15,7 @@ You'll see something like this: ![](./structure.png) -* .env - The python virtual envirnment information discussed in the previous section. +* .env - The python virtual environment information discussed in the previous section. * cdkworkshop — A Python module directory. * cdkworkshop.egg-info - Folder that contains build information relevant for the packaging on the project * cdkworkshop_stack.py—A custom CDK stack construct for use in your CDK application. @@ -63,6 +63,7 @@ from aws_cdk import ( core ) + class CdkWorkshopStack(core.Stack): def __init__(self, scope: core.Construct, id: str, **kwargs) -> None: diff --git a/workshop/content/30-python/40-hit-counter/100-api.md b/workshop/content/30-python/40-hit-counter/100-api.md index 311a7c4a7..cc56c65e2 100644 --- a/workshop/content/30-python/40-hit-counter/100-api.md +++ b/workshop/content/30-python/40-hit-counter/100-api.md @@ -13,6 +13,7 @@ from aws_cdk import ( core ) + class HitCounter(core.Construct): def __init__(self, scope: core.Construct, id: str, downstream: _lambda.IFunction, **kwargs): diff --git a/workshop/content/30-python/40-hit-counter/300-resources.md b/workshop/content/30-python/40-hit-counter/300-resources.md index dd03e7e8c..2406a60a0 100644 --- a/workshop/content/30-python/40-hit-counter/300-resources.md +++ b/workshop/content/30-python/40-hit-counter/300-resources.md @@ -15,6 +15,7 @@ from aws_cdk import ( core, ) + class HitCounter(core.Construct): @property diff --git a/workshop/content/30-python/40-hit-counter/600-permissions.md b/workshop/content/30-python/40-hit-counter/600-permissions.md index a7ccae9bf..66b73f084 100644 --- a/workshop/content/30-python/40-hit-counter/600-permissions.md +++ b/workshop/content/30-python/40-hit-counter/600-permissions.md @@ -16,6 +16,7 @@ from aws_cdk import ( core, ) + class HitCounter(core.Construct): @property @@ -118,6 +119,7 @@ from aws_cdk import ( core, ) + class HitCounter(core.Construct): @property diff --git a/workshop/content/30-python/50-table-viewer/400-expose-table.md b/workshop/content/30-python/50-table-viewer/400-expose-table.md index 1b005f8c2..81d894ed9 100644 --- a/workshop/content/30-python/50-table-viewer/400-expose-table.md +++ b/workshop/content/30-python/50-table-viewer/400-expose-table.md @@ -14,6 +14,7 @@ from aws_cdk import ( core, ) + class HitCounter(core.Construct): @property