summaryrefslogtreecommitdiff
path: root/git/objects/submodule/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2019-10-29 08:31:39 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-10-29 08:31:39 +0100
commit52ee6c19423297b4c667d34ed1bd621dafaabb0e (patch)
tree5ac04998b1f5b0fba24297e97f5592c74b617688 /git/objects/submodule/base.py
parent553500a3447667aaa9bd3b922742575562c03b68 (diff)
parent9932e647aaaaf6edd3a407b75edd08a96132ef5c (diff)
downloadgitpython-52ee6c19423297b4c667d34ed1bd621dafaabb0e.tar.gz
Merge branch 'fix/deepsource-issues' of https://github.com/imkaka/GitPython into imkaka-fix/deepsource-issues
Diffstat (limited to 'git/objects/submodule/base.py')
-rw-r--r--git/objects/submodule/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py
index bc76bcce..04ca0221 100644
--- a/git/objects/submodule/base.py
+++ b/git/objects/submodule/base.py
@@ -846,7 +846,7 @@ class Submodule(IndexObject, Iterable, Traversable):
# have to manually delete references as python's scoping is
# not existing, they could keep handles open ( on windows this is a problem )
if len(rrefs):
- del(rref)
+ del(rref) # skipcq: PYL-W0631
# END handle remotes
del(rrefs)
del(remote)