From 79e2fe9b92ff594bab157265e86f5906eef1f0b6 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 30 Apr 2024 07:16:04 -0700 Subject: improve variable's name --- packages/git-broom/git-broom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages') diff --git a/packages/git-broom/git-broom.py b/packages/git-broom/git-broom.py index 8721b3c..b508357 100755 --- a/packages/git-broom/git-broom.py +++ b/packages/git-broom/git-broom.py @@ -77,8 +77,8 @@ class GitConfig(object): encoding="utf-8", ).stdout.splitlines() - for l in remote_head: - m = re_match_remote_branch.match(l) + for rh in remote_head: + m = re_match_remote_branch.match(rh) if m: self.primary_branch = m.group("branch") return -- cgit 1.4.1