summaryrefslogtreecommitdiffstats
path: root/tests/test_git_command.py
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2023-08-21 21:20:32 -0400
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-08-22 18:32:22 +0000
commit6447733eb28ea188d551ae518a7e51ebf63a4350 (patch)
tree3e2571b39af0f8544dae4660ebc1d29e2a7bda9d /tests/test_git_command.py
parent06ddc8c50a7e802dbaf8468144c2b5773cda3714 (diff)
downloadgit-repo-6447733eb28ea188d551ae518a7e51ebf63a4350.tar.gz
isort: format codebasev2.36
Change-Id: I6f11d123b68fd077f558d3c21349c55c5f251019 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/383715 Reviewed-by: Gavin Mak <gavinmak@google.com> Tested-by: Mike Frysinger <vapier@google.com> Commit-Queue: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'tests/test_git_command.py')
-rw-r--r--tests/test_git_command.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_git_command.py b/tests/test_git_command.py
index 3dd31b29..c803d280 100644
--- a/tests/test_git_command.py
+++ b/tests/test_git_command.py
@@ -14,11 +14,12 @@
14 14
15"""Unittests for the git_command.py module.""" 15"""Unittests for the git_command.py module."""
16 16
17import re
18import os 17import os
18import re
19import subprocess 19import subprocess
20import unittest 20import unittest
21 21
22
22try: 23try:
23 from unittest import mock 24 from unittest import mock
24except ImportError: 25except ImportError: