Skip to content

Commit 57f3374

Browse files
committed
False-negative pylint result on py3.4
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent 4f36630 commit 57f3374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exec_helpers/metaclasses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(cls, name: str, bases: typing.Tuple[type, ...], namespace: typing.D
5757
super(SingleLock, cls).__init__(name, bases, namespace)
5858
cls.__lock = threading.RLock()
5959

60-
def __new__(
60+
def __new__( # pylint: disable=arguments-differ
6161
mcs: typing.Type["SingleLock"],
6262
name: str,
6363
bases: typing.Tuple[type, ...],

0 commit comments

Comments
 (0)