Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions ci/scripts/jenkins/open_docker_update_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@
# under the License.

import argparse
import logging
import datetime
import os
import json
import logging
import os
import re
import shlex
from typing import Any, Callable, Dict, List, Optional
from urllib import error
from typing import List, Dict, Any, Optional, Callable
from git_utils import git, parse_remote, GitHubRepo
from cmd_utils import REPO_ROOT, init_log

from cmd_utils import REPO_ROOT, Sh, init_log
from git_utils import GitHubRepo, git, parse_remote
from should_rebuild_docker import docker_api

JENKINS_DIR = REPO_ROOT / "ci" / "jenkins"
Expand Down
Loading