Commit 8a2c50e2 authored by Jason Madden's avatar Jason Madden

pylint can't see through the indirection that we're really calling greenlet.__init__.

parent 0c13aff2
......@@ -132,7 +132,8 @@ class Greenlet(greenlet):
spawning_stack_limit = 10
def __init__(self, run=None, *args, **kwargs): # pylint:disable=keyword-arg-before-vararg
# pylint:disable=keyword-arg-before-vararg,super-init-not-called
def __init__(self, run=None, *args, **kwargs):
"""
Greenlet(run=None, *args, **kwargs) -> Greenlet
......
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