diff mbox series

[4/5] git.py: @_contains_lfs: Removed unused variables

Message ID 20230217170009.58707-4-paulo@myneves.com
State New
Headers show
Series [1/5] tests: git-lfs: Restore _find_git_lfs | expand

Commit Message

Paulo Neves Feb. 17, 2023, 5:01 p.m. UTC
branchname was set but never used in the context of _contains_lfs
method.

Signed-off-by: Paulo Neves <paulo@myneves.com>
---
 lib/bb/fetch2/git.py | 5 -----
 1 file changed, 5 deletions(-)

--
2.34.1
diff mbox series

Patch

diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py
index a3f29d2b9..fcd70fdcf 100644
--- a/lib/bb/fetch2/git.py
+++ b/lib/bb/fetch2/git.py
@@ -660,11 +660,6 @@  class Git(FetchMethod):
         Check if the repository has 'lfs' (large file) content
         """

-        if not ud.nobranch:
-            branchname = ud.branches[ud.names[0]]
-        else:
-            branchname = "master"
-
         # The bare clonedir doesn't use the remote names; it has the branch immediately.
         if wd == ud.clonedir:
             refname = ud.branches[ud.names[0]]