sync/command.py [578:591]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if not pr_ids:
        sync = sync_from_path(git_gecko, git_wpt)
        if sync is None:
            logger.error("No pr_id supplied and no sync for current path")
            return
        syncs = {sync.pr: sync}
    else:
        syncs = {}
        for pr_id in pr_ids:
            sync = downstream.DownstreamSync.for_pr(git_gecko, git_wpt, pr_id)
            if sync is not None:
                assert sync.pr is not None
                syncs[sync.pr] = sync
    for sync_pr_id, sync in syncs.items():
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sync/command.py [604:618]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if not pr_ids:
        sync = sync_from_path(git_gecko, git_wpt)
        if sync is None:
            logger.error("No pr_id supplied and no sync for current path")
            return
        syncs = {sync.pr: sync}
    else:
        syncs = {}
        for pr_id in pr_ids:
            sync = downstream.DownstreamSync.for_pr(git_gecko, git_wpt, pr_id)
            if sync is not None:
                assert sync.pr is not None
                syncs[sync.pr] = sync

    for sync_pr_id, sync in syncs.items():
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



