diff options
author | Munyoki Kilyungi | 2023-09-05 16:18:45 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-09-05 16:18:45 +0300 |
commit | 3e83626e5a0b9cac5f8d06ffdb8bd16369cb6374 (patch) | |
tree | 07ad7f404593463c6ae110fd12a2b51e8f691ec2 /setup_commands | |
parent | 45d89d4594e32e4647f93647fdb3ecf85a2d4165 (diff) | |
download | genenetwork3-3e83626e5a0b9cac5f8d06ffdb8bd16369cb6374.tar.gz |
Add pylint: disable=W0402
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'setup_commands')
-rw-r--r-- | setup_commands/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_commands/run_tests.py b/setup_commands/run_tests.py index e3422fa..37d7ffa 100644 --- a/setup_commands/run_tests.py +++ b/setup_commands/run_tests.py @@ -1,6 +1,6 @@ """Run tests""" import os -from distutils.core import Command +from distutils.core import Command # pylint: disable=W0402 class RunTests(Command): """ |