Преглед на файлове

support/testing: fix python-gitdb2 test

Cthe test-case for python-gitdb2 consists solely in verifying that the
module can indeed be imported.

However, flake8 errors out on unused imports. Furthermore, it also
errors about wildcard imports, as it can detect unused symbols.

Squelch those errors.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Yann E. MORIN преди 5 години
родител
ревизия
d8c86be9cd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      support/testing/tests/package/sample_python_gitdb2.py

+ 1 - 1
support/testing/tests/package/sample_python_gitdb2.py

@@ -1 +1 @@
-from gitdb import *
+from gitdb import *  # NOQA: F401 F403