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)
|
+ ' \\\n '.join(deps)
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
for dep in deps:
|
yield from deps
|
||||||
yield dep
|
|
||||||
|
|
||||||
def to_install_commands(self) -> Generator[str, None, None]:
|
def to_install_commands(self) -> Generator[str, None, None]:
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue