summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
authorMichael Estner <michaelestner@web.de>2025-02-25 19:34:25 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-27 15:12:55 +0000
commite1836b205a2716e85f36346762805e2e505a5eb6 (patch)
tree6564a413bf1e3e3e092884871d4cdf49f8cf72d8 /bitbake/lib/bb/fetch2/git.py
parentff8898d10b75841061928da3facac506b281ed81 (diff)
downloadpoky-e1836b205a2716e85f36346762805e2e505a5eb6.tar.gz
bitbake: lib: Remove double imports
* Remove double imports mentioned by pylint (Bitbake rev: 741db6719efca5aa9ef2c15e60cdd624e4aa1a8d) Signed-off-by: Michael Estner <michaelestner@web.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 6badda5972..168f14d0c8 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -817,7 +817,6 @@ class Git(FetchMethod):
817 """ 817 """
818 Return True if git-lfs can be found, False otherwise. 818 Return True if git-lfs can be found, False otherwise.
819 """ 819 """
820 import shutil
821 return shutil.which("git-lfs", path=d.getVar('PATH')) is not None 820 return shutil.which("git-lfs", path=d.getVar('PATH')) is not None
822 821
823 def _get_repo_url(self, ud): 822 def _get_repo_url(self, ud):