Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chalice/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Control plane APIs for programatically building/deploying Chalice apps.
"""Control plane APIs for programatically building/deploying Chalice apps. testing !

The eventual goal is to expose this as a public API that other tools can use
in their own integrations with Chalice, but this will need time for the APIs
Expand All @@ -11,7 +11,7 @@

def package_app(project_dir, output_dir, stage, chalice_config=None,
package_format='cloudformation', template_format='json'):
# type: (str, str, str, Dict[str, Any], str, str) -> None
# type: (str, str, str, Dict[str, Any], str, str) -> None
factory = CLIFactory(project_dir, environ=os.environ)
if chalice_config is None:
chalice_config = {}
Expand Down