diff options
author | Mike Frysinger <vapier@google.com> | 2023-08-21 21:20:32 -0400 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-08-22 18:32:22 +0000 |
commit | 6447733eb28ea188d551ae518a7e51ebf63a4350 (patch) | |
tree | 3e2571b39af0f8544dae4660ebc1d29e2a7bda9d /release/update_manpages.py | |
parent | 06ddc8c50a7e802dbaf8468144c2b5773cda3714 (diff) | |
download | git-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 'release/update_manpages.py')
-rw-r--r-- | release/update_manpages.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/update_manpages.py b/release/update_manpages.py index cb687245..489de357 100644 --- a/release/update_manpages.py +++ b/release/update_manpages.py | |||
@@ -17,17 +17,18 @@ | |||
17 | Most code lives in this module so it can be unittested. | 17 | Most code lives in this module so it can be unittested. |
18 | """ | 18 | """ |
19 | 19 | ||
20 | from pathlib import Path | ||
21 | import argparse | 20 | import argparse |
22 | import functools | 21 | import functools |
23 | import multiprocessing | 22 | import multiprocessing |
24 | import os | 23 | import os |
24 | from pathlib import Path | ||
25 | import re | 25 | import re |
26 | import shutil | 26 | import shutil |
27 | import subprocess | 27 | import subprocess |
28 | import sys | 28 | import sys |
29 | import tempfile | 29 | import tempfile |
30 | 30 | ||
31 | |||
31 | TOPDIR = Path(__file__).resolve().parent.parent | 32 | TOPDIR = Path(__file__).resolve().parent.parent |
32 | MANDIR = TOPDIR.joinpath("man") | 33 | MANDIR = TOPDIR.joinpath("man") |
33 | 34 | ||