forked from platypush/platypush
Replaced an old for ... in ... yield
loop with yield from ...
This commit is contained in:
parent
b1dd484704
commit
2e0246413c
1 changed files with 1 additions and 2 deletions
|
@ -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]:
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue