Skip to content

Commit

Permalink
Remove extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuenzalida authored Jan 21, 2025
1 parent 4d91f53 commit a9ff6dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4134,7 +4134,7 @@ def _parse_major_version_linux(self, major_version, parsed_results):
(linux_container_settings.java11_runtime, "11", linux_container_settings.is_auto_update),
(linux_container_settings.java8_runtime, "8", linux_container_settings.is_auto_update)]
# Remove the JBoss'_byol' entries from the output
runtimes = [(r, v, au) for (r, v, au) in runtimes if r is not None and not(r.endswith("_byol"))] # pylint: disable=line-too-long
runtimes = [(r, v, au) for (r, v, au) in runtimes if r is not None and not r.endswith("_byol")] # pylint: disable=line-too-long
for runtime_name, version, auto_update in [(r, v, au) for (r, v, au) in runtimes if r is not None]:
runtime = self.Runtime(display_name=runtime_name,
configs={"linux_fx_version": runtime_name},
Expand Down

0 comments on commit a9ff6dd

Please sign in to comment.