We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f53ff1 commit 5e753b5Copy full SHA for 5e753b5
python/rpdk/python/codegen.py
@@ -158,7 +158,7 @@ def generate(self, project):
158
LOG.debug("Generate complete")
159
160
def _pre_package(self, build_path):
161
- f = TemporaryFile("w+b")
+ f = TemporaryFile("w+b") # pylint: disable=consider-using-with
162
163
with zipfile.ZipFile(f, mode="w") as zip_file:
164
self._recursive_relative_write(build_path, build_path, zip_file)
src/setup.py
@@ -3,7 +3,7 @@
3
4
setup(
5
name="cloudformation-cli-python-lib",
6
- version="2.1.5",
+ version="2.1.6",
7
description=__doc__,
8
author="Amazon Web Services",
9
author_email="aws-cloudformation-developers@amazon.com",
0 commit comments