summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-rw-r--r--git/__init__.py1
-rw-r--r--git/cmd.py2
-rw-r--r--git/compat.py1
-rw-r--r--git/index/__init__.py1
-rw-r--r--git/objects/__init__.py1
-rw-r--r--git/refs/__init__.py1
-rw-r--r--git/repo/__init__.py1
7 files changed, 7 insertions, 1 deletions
diff --git a/git/__init__.py b/git/__init__.py
index 209a4d90..3f26886f 100644
--- a/git/__init__.py
+++ b/git/__init__.py
@@ -3,6 +3,7 @@
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# flake8: noqa
# @PydevCodeAnalysisIgnore
from git.exc import * # @NoMove @IgnorePep8
import inspect
diff --git a/git/cmd.py b/git/cmd.py
index c9e23ede..12409b0c 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -947,7 +947,7 @@ class Git(LazyMixin):
)
else:
cmd_not_found_exception = (
- FileNotFoundError
+ FileNotFoundError # NOQA # exists, flake8 unknown @UndefinedVariable
)
# end handle
diff --git a/git/compat.py b/git/compat.py
index 20e6b979..e7ef28c3 100644
--- a/git/compat.py
+++ b/git/compat.py
@@ -5,6 +5,7 @@
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
"""utilities to help provide compatibility with python 3"""
+# flake8: noqa
import locale
import os
diff --git a/git/index/__init__.py b/git/index/__init__.py
index e50e4f53..96b721f0 100644
--- a/git/index/__init__.py
+++ b/git/index/__init__.py
@@ -1,3 +1,4 @@
"""Initialize the index package"""
+# flake8: noqa
from .base import *
from .typ import *
diff --git a/git/objects/__init__.py b/git/objects/__init__.py
index 01a6395b..d2e1e53a 100644
--- a/git/objects/__init__.py
+++ b/git/objects/__init__.py
@@ -1,6 +1,7 @@
"""
Import all submodules main classes into the package space
"""
+# flake8: noqa
import inspect
from .base import *
diff --git a/git/refs/__init__.py b/git/refs/__init__.py
index c17856ae..1486dffe 100644
--- a/git/refs/__init__.py
+++ b/git/refs/__init__.py
@@ -1,3 +1,4 @@
+# flake8: noqa
# import all modules in order, fix the names they require
from .symbolic import *
from .reference import *
diff --git a/git/repo/__init__.py b/git/repo/__init__.py
index 0ca758cb..23c18db8 100644
--- a/git/repo/__init__.py
+++ b/git/repo/__init__.py
@@ -1,2 +1,3 @@
"""Initialize the Repo package"""
+# flake8: noqa
from .base import Repo as Repo