mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Replace pylint "disable-msg" by "disable", and disable one more msg in setup.
This commit is contained in:
parent
ab0ee2c301
commit
9b86e6ef27
4 changed files with 19 additions and 16 deletions
3
setup.py
3
setup.py
|
@ -43,6 +43,8 @@ from distutils.command.build_scripts import build_scripts
|
|||
import radicale
|
||||
|
||||
|
||||
# build_scripts is known to have a lot of public methods
|
||||
# pylint: disable=R0904
|
||||
class BuildScripts(build_scripts):
|
||||
"""Build the package."""
|
||||
def run(self):
|
||||
|
@ -52,6 +54,7 @@ class BuildScripts(build_scripts):
|
|||
for script in self.scripts:
|
||||
root, _ = os.path.splitext(script)
|
||||
self.copy_file(script, os.path.join(self.build_dir, root))
|
||||
# pylint: enable=R0904
|
||||
|
||||
|
||||
# When the version is updated, ``radicale.VERSION`` must be modified.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue