From db72b4c7b006b40d7b3db5ee71d624ab6d3bb596 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 28 Aug 2022 22:50:50 +0200 Subject: [PATCH] Revert workaround for https://github.com/PyCQA/pylint/issues/7003 --- check_python.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/check_python.py b/check_python.py index c83fc261..c47d38f1 100644 --- a/check_python.py +++ b/check_python.py @@ -79,9 +79,7 @@ def main() -> None: PYTHONPATH=os.pathsep.join(sys.path + workspace.path)) result = subprocess.run( [sys.executable, '-m', 'pylint', - # We’d like to add “--” after the options, but that’s not possible due - # to https://github.com/PyCQA/pylint/issues/7003. - '--persistent=no', '--rcfile=' + str(args.pylintrc.resolve())] + '--persistent=no', '--rcfile=' + str(args.pylintrc.resolve()), '--'] + [str(file.relative_to(cwd)) for file in sorted(workspace.srcs)], check=False, cwd=cwd, env=env,