Module: Mesa Branch: main Commit: caf9900b3da9b5d5747606a5b2b80da395b6095e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=caf9900b3da9b5d5747606a5b2b80da395b6095e
Author: Guilherme Gallo <[email protected]> Date: Fri Jul 15 18:15:52 2022 -0300 ci/bin: Sort imports from ci_run_n_monitor.py Signed-off-by: Guilherme Gallo <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17791> --- .gitlab-ci/bin/ci_run_n_monitor.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci/bin/ci_run_n_monitor.py b/.gitlab-ci/bin/ci_run_n_monitor.py index bd8bc178f9e..22887b7b281 100755 --- a/.gitlab-ci/bin/ci_run_n_monitor.py +++ b/.gitlab-ci/bin/ci_run_n_monitor.py @@ -12,17 +12,16 @@ Helper script to restrict running only required CI jobs and show the job(s) logs. """ -from typing import Optional -from functools import partial -from concurrent.futures import ThreadPoolExecutor - +import argparse import os import re -import time -import argparse import sys -import gitlab +import time +from concurrent.futures import ThreadPoolExecutor +from functools import partial +from typing import Optional +import gitlab from colorama import Fore, Style REFRESH_WAIT_LOG = 10
