Skip to content

Commit

Permalink
Add module docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicasyu committed Aug 18, 2023
1 parent 6f09a97 commit df53b43
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/container_collection/batch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tasks for working with AWS Batch."""

from prefect import task

from .check_batch_job import check_batch_job
Expand Down
2 changes: 2 additions & 0 deletions src/container_collection/docker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tasks for working with Docker."""

from prefect import task

from .check_docker_job import check_docker_job
Expand Down
2 changes: 2 additions & 0 deletions src/container_collection/fargate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tasks for working with AWS ECS Fargate."""

from prefect import task

from .check_fargate_task import check_fargate_task
Expand Down
2 changes: 2 additions & 0 deletions src/container_collection/manifest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tasks for working with manifest files."""

from prefect import task

from .filter_manifest_files import filter_manifest_files
Expand Down
2 changes: 2 additions & 0 deletions src/container_collection/template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tasks for working with template files."""

from prefect import task

from .generate_input_contents import generate_input_contents
Expand Down

0 comments on commit df53b43

Please sign in to comment.