diff options
author | Anil Khatri <anil.soccer.khatri@gmail.com> | 2019-10-22 21:46:53 +0530 |
---|---|---|
committer | Anil Khatri <anil.soccer.khatri@gmail.com> | 2019-10-22 21:47:31 +0530 |
commit | dba01d3738912a59b468b76922642e8983d8995b (patch) | |
tree | e2f686b0d3ab154d9a133eb096f24c2027993949 /git/exc.py | |
parent | d52c5783c08f4f9e397c4dad55bbfee2b8c61c5f (diff) | |
download | gitpython-dba01d3738912a59b468b76922642e8983d8995b.tar.gz |
silence PYL-W0401
Diffstat (limited to 'git/exc.py')
-rw-r--r-- | git/exc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |