Commit f0c555b5 authored by Jérome Perrin's avatar Jérome Perrin

interfaces: fix usage of `self` argument

zope.interface does not use self argument.

Also set a pylint directive not to report false positive regarding
the lack of self argument.
parent 0b5ff71a
Pipeline #20295 failed with stage
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
from zope.interface import Attribute from zope.interface import Attribute
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
class IHandler(Interface): class IHandler(Interface):
......
...@@ -28,6 +28,9 @@ ...@@ -28,6 +28,9 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
from zope.interface import Attribute from zope.interface import Attribute
......
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
...@@ -89,7 +91,7 @@ class IManager(Interface): ...@@ -89,7 +91,7 @@ class IManager(Interface):
metadata_dict : Metadatas to include in content metadata_dict : Metadatas to include in content
""" """
def getAllowedConversionFormatList(self, source_mimetype): def getAllowedConversionFormatList(source_mimetype):
"""Returns a list content_type and their titles which are supported """Returns a list content_type and their titles which are supported
by enabled handlers. by enabled handlers.
...@@ -126,7 +128,7 @@ class IERP5Compatibility(Interface): ...@@ -126,7 +128,7 @@ class IERP5Compatibility(Interface):
dictionary""" dictionary"""
return (200 or 402, dict(), '') return (200 or 402, dict(), '')
def run_getmetadata(self, filename, data, meta, extension, orig_format): def run_getmetadata(filename, data, meta, extension, orig_format):
"""Extracts metadata from ODF and returns in dictionary""" """Extracts metadata from ODF and returns in dictionary"""
return (200 or 402, dict(), '') return (200 or 402, dict(), '')
...@@ -134,6 +136,6 @@ class IERP5Compatibility(Interface): ...@@ -134,6 +136,6 @@ class IERP5Compatibility(Interface):
"""It exports a ODF to given format""" """It exports a ODF to given format"""
return (200 or 402, dict(), '') return (200 or 402, dict(), '')
def getAllowedTargetItemList(self, content_type): def getAllowedTargetItemList(content_type):
"""List types which can be generated from given content type""" """List types which can be generated from given content type"""
return (200 or 402, dict(), '') return (200 or 402, dict(), '')
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
......
...@@ -28,6 +28,9 @@ ...@@ -28,6 +28,9 @@
# #
############################################################################## ##############################################################################
# pylint:disable=no-method-argument,no-self-argument
from zope.interface import Interface from zope.interface import Interface
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment