commit | 8dd85218541f66b5c6740e46ebb3ebbcfc585af1 | [log] [tgz] |
---|---|---|
author | Jason R. Coombs | Fri Oct 20 06:48:20 2023 -0400 |
committer | LUCI | Fri Oct 20 17:33:03 2023 +0000 |
tree | 7b1013f1f5b9c2b428da07566a407d26eec4e9b9 | |
parent | 49c9b068382a4a41352bb3429f6d6881e3ce2c21 [diff] [blame] |
cleanup: leverage yield from in more places Change-Id: I4f9cb27d89241d3738486764817b51981444a903 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/390274 Reviewed-by: Aravind VasudevanCommit-Queue: Mike Frysinger Tested-by: Mike Frysinger
diff --git a/command.py b/command.py index a6189ed..8c31c18 100644 --- a/command.py +++ b/command.py
@@ -476,8 +476,7 @@ top = self.manifest yield top if not opt.this_manifest_only: - for child in top.all_children: - yield child + yield from top.all_children class InteractiveCommand(Command):