From f3a4c4e60e5f964d24619425c494e8a2ad50d779 Mon Sep 17 00:00:00 2001 From: Patrick Daly Date: Fri, 23 Jul 2021 09:25:17 -0700 Subject: [PATCH] pylint call fixed --- scripts/dev_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dev_tools.py b/scripts/dev_tools.py index f92e8bd..a3be9ef 100644 --- a/scripts/dev_tools.py +++ b/scripts/dev_tools.py @@ -1,7 +1,7 @@ from subprocess import check_call def lint(): - check_call(['pylint']) + check_call(['pylint', '.']) def test(): check_call(['pytest', '--cov=mev_inspect', 'tests']) @@ -28,4 +28,4 @@ def build(): check_call(['docker', 'build', '-t', 'mev-inspect', '.']) def start_it(): - check_call(['docker', 'run', '-it', 'mev-inspect']) + check_call(['docker', 'run', 'mev-inspect'])