From a59a868918b82374ffd2568c4cdd0319fb22bc8f Mon Sep 17 00:00:00 2001 From: adarbari Date: Mon, 24 May 2021 12:49:00 -0700 Subject: [PATCH] Update __init__.py --- chalice/api/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chalice/api/__init__.py b/chalice/api/__init__.py index 7b474cc..40868f6 100644 --- a/chalice/api/__init__.py +++ b/chalice/api/__init__.py @@ -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 @@ -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 = {}