summaryrefslogtreecommitdiff
path: root/git/exc.py
diff options
context:
space:
mode:
authorAnil Khatri <anil.soccer.khatri@gmail.com>2019-10-22 21:46:53 +0530
committerAnil Khatri <anil.soccer.khatri@gmail.com>2019-10-22 21:47:31 +0530
commitdba01d3738912a59b468b76922642e8983d8995b (patch)
treee2f686b0d3ab154d9a133eb096f24c2027993949 /git/exc.py
parentd52c5783c08f4f9e397c4dad55bbfee2b8c61c5f (diff)
downloadgitpython-dba01d3738912a59b468b76922642e8983d8995b.tar.gz
silence PYL-W0401
Diffstat (limited to 'git/exc.py')
-rw-r--r--git/exc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/exc.py b/git/exc.py
index 4865da94..df79747f 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -5,7 +5,7 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
""" Module containing all exceptions thrown throughout the git package, """
-from gitdb.exc import * # NOQA @UnusedWildImport
+from gitdb.exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401
from git.compat import UnicodeMixin, safe_decode, string_types