From 9a5ca3b176d4c7495802d7dd1695aa270185cb05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 23:42:02 +0000 Subject: [PATCH] chore(deps-dev): bump ruff from 0.4.10 to 0.5.0 in /requirements (#7206) * chore(deps-dev): bump ruff from 0.4.10 to 0.5.0 in /requirements Bumps [ruff](https://github.com/astral-sh/ruff) from 0.4.10 to 0.5.0. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.4.10...0.5.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * fix linting issue --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wing Fung Lau <4760060+hawflau@users.noreply.github.com> --- requirements/pre-dev.txt | 2 +- samcli/local/docker/lambda_container.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements/pre-dev.txt b/requirements/pre-dev.txt index e5ebce27d3..38ed49bd37 100644 --- a/requirements/pre-dev.txt +++ b/requirements/pre-dev.txt @@ -1 +1 @@ -ruff==0.4.10 +ruff==0.5.0 diff --git a/samcli/local/docker/lambda_container.py b/samcli/local/docker/lambda_container.py index d59b670920..96fb0acb21 100644 --- a/samcli/local/docker/lambda_container.py +++ b/samcli/local/docker/lambda_container.py @@ -154,7 +154,6 @@ def _get_default_entry_point() -> List[str]: Returns default entry point for lambda container, which is the path of the RIE executable with its debugging configuration. If SAM_CLI_RIE_DEV is set to 1, RIE log level is set to 'debug', otherwise it is kept as 'error'. """ - # rie_log_level = "debug" if os.environ.get(RIE_LOG_LEVEL_ENV_VAR, "0") == "1" else "error" return ["/var/rapid/aws-lambda-rie", "--log-level", rie_log_level]