We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bba2a4 + 25bee51 commit 15b9848Copy full SHA for 15b9848
lib/matplotlib/docstring.py
@@ -33,8 +33,8 @@ def some_function(x):
33
"%s %s wrote the Raven"
34
"""
35
def __init__(self, *args, **kwargs):
36
- assert (not (args and kwargs),
37
- "Only positional or keyword args are allowed")
+ assert not (args and kwargs), \
+ "Only positional or keyword args are allowed"
38
self.params = args or kwargs
39
40
def __call__(self, func):
0 commit comments