From 2e0246413cad6b2f925696220fc723631af6f34c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 25 May 2024 10:35:23 +0200 Subject: [PATCH] Replaced an old `for ... in ... yield` loop with `yield from ...` --- platypush/utils/manifest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platypush/utils/manifest.py b/platypush/utils/manifest.py index b8b7f118..07788deb 100644 --- a/platypush/utils/manifest.py +++ b/platypush/utils/manifest.py @@ -480,8 +480,7 @@ class Dependencies: + ' \\\n '.join(deps) ) else: - for dep in deps: - yield dep + yield from deps def to_install_commands(self) -> Generator[str, None, None]: """