wemake-python-styleguide
wemake-python-styleguide copied to clipboard
WPS612 false positive for keyword arguments with different default values
What's wrong
I already wrote all in details for Pylint, please read: https://github.com/PyCQA/pylint/issues/7287
class Foo:
def __init__(*, bar = 10):
...
class Child(Foo):
def __init__(*, bar = 99999):
super().__init__(bar=bar)
How it should be
no warnings
Flake8 version and plugins
not relevant
pip information
not relevant
OS information
not relevant
Good afternoon. I will try to fix this bug.