Skip to content

Commit 21bd961

Browse files
authored
update_checkout: fix Python linter warnings
1 parent fc3e14b commit 21bd961

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,14 +653,14 @@ def main():
653653
if os.path.exists(swift_repo_path):
654654
with shell.pushd(swift_repo_path, dry_run=False, echo=True):
655655
# Check if `swift` repo itself needs to switch to a cross-repo branch.
656-
branch_name, cross_repo = get_branch_for_repo(config, 'swift',
656+
branch_name, cross_repo = get_branch_for_repo(config, 'swift',
657657
scheme_name,
658658
scheme_map,
659659
cross_repos_pr)
660660

661661
if cross_repo:
662662
shell.run(['git', 'checkout', branch_name], echo=True,
663-
prefix="[swift] ")
663+
prefix="[swift] ")
664664

665665
# Re-read the config after checkout.
666666
with open(args.config) as f:

0 commit comments

Comments
 (0)