diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-07 15:09:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-07 15:09:40 +0200 |
| commit | e41f78b806a4f00cbb37fd4a276aff7d10230057 (patch) | |
| tree | d104874dbc13e878303a37bb0e7f6d5c4ec42304 /searx/unixthreadname.py | |
| parent | 9ef7f38e4f20bad5a76867aa3e5049a92bc58e59 (diff) | |
| parent | 2a3b9a2e26fc9570c2dd2f070257968a2b3a1149 (diff) | |
Merge pull request #301 from return42/fix-lintrc
[pylint] .pylintrc - disable missing-function-docstring
Diffstat (limited to 'searx/unixthreadname.py')
| -rw-r--r-- | searx/unixthreadname.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/unixthreadname.py b/searx/unixthreadname.py index 9a6f53813..0f1f54936 100644 --- a/searx/unixthreadname.py +++ b/searx/unixthreadname.py @@ -14,7 +14,7 @@ else: old_thread_init = threading.Thread.__init__ def new_thread_init(self, *args, **kwargs): - # pylint: disable=protected-access, disable=c-extension-no-member, disable=missing-function-docstring + # pylint: disable=protected-access, disable=c-extension-no-member old_thread_init(self, *args, **kwargs) setproctitle.setthreadtitle(self._name) threading.Thread.__init__ = new_thread_init |