From 29491e3f8d246154f3c88753aa1fb5f71041be57 Mon Sep 17 00:00:00 2001 From: Felix von Drigalski Date: Fri, 5 Nov 2021 19:18:03 +0900 Subject: [PATCH 1/2] Clarify syntax in pylint.lint example This makes the call non-trivial and demonstrates the syntax more fully. --- doc/user_guide/run.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide/run.rst b/doc/user_guide/run.rst index 0e5cce4beb..a4a13d580b 100644 --- a/doc/user_guide/run.rst +++ b/doc/user_guide/run.rst @@ -42,7 +42,7 @@ thanks to the ``Run()`` function in the ``pylint.lint`` module .. sourcecode:: python import pylint.lint - pylint_opts = ['--version'] + pylint_opts = ['--disable=line-too-long', 'myfile.py'] pylint.lint.Run(pylint_opts) To silently run Pylint on a ``module_name.py`` module, From e40341b7f079b5131b0fde7c78fb2e33a3e51da2 Mon Sep 17 00:00:00 2001 From: Felix von Drigalski Date: Sun, 7 Nov 2021 17:34:33 +0900 Subject: [PATCH 2/2] Add entry to CONTRIBUTORS --- CONTRIBUTORS.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 64dc3f3499..cec1c32716 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -1,4 +1,4 @@ -Contributors +Contributors ------------ Current team: @@ -577,3 +577,5 @@ contributors: * Antonio Quarta (sgheppy): contributor * Harshil (harshil21): contributor + +* Felix von Drigalski (felixvd): contributor