From b95dd2fd95169e9f60ba20a54e529a573ac96efa Mon Sep 17 00:00:00 2001 From: Allen Li Date: Fri, 12 Jul 2024 00:07:12 +0000 Subject: [PATCH] [git_cl] Organize imports Separate stdlib and depot_tools, and from imports Change-Id: I88e40ca07215d918d1354472d9d16c6babef54d9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5691997 Commit-Queue: Allen Li Reviewed-by: Yiwei Zhang --- git_cl.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/git_cl.py b/git_cl.py index 675c468fa..baf477761 100755 --- a/git_cl.py +++ b/git_cl.py @@ -32,7 +32,6 @@ import uuid import webbrowser import zlib -from third_party import colorama from typing import Any from typing import List from typing import Mapping @@ -40,6 +39,7 @@ from typing import NoReturn from typing import Optional from typing import Sequence from typing import Tuple + import auth import clang_format import gclient_paths @@ -65,6 +65,8 @@ import subprocess2 import swift_format import watchlists +from third_party import colorama + __version__ = '2.0'