CLI/git: remove unused import

shutil was used only for the tempfile.TemporaryDirectory backport,
which was removed in commit b7c31f6581 ("CLI/git: drop support for
python < 3.2").
This commit is contained in:
Jakub Wilk 2024-01-12 17:27:48 +01:00 committed by David Bremner
parent 52a5446150
commit 5f3e5dd411

View file

@ -31,7 +31,6 @@ import locale as _locale
import logging as _logging
import os as _os
import re as _re
import shutil as _shutil
import subprocess as _subprocess
import sys as _sys
import tempfile as _tempfile