Skip to content

Commit 877ebb3

Browse files
CLN: Missed styling changes
For some reason black didn't catch the validation script the first time. It should be fixed now.
1 parent adc77e8 commit 877ebb3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/validate_docstrings.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,12 @@ def needs_summary(self):
422422

423423
@property
424424
def doc_parameters(self):
425-
var_arg_combinations = {"*args, **kwargs", "*args, **kwds",
426-
"**kwargs, *args", "**kwds, *args"}
425+
var_arg_combinations = {
426+
"*args, **kwargs",
427+
"*args, **kwds",
428+
"**kwargs, *args",
429+
"**kwds, *args",
430+
}
427431
docs = collections.OrderedDict()
428432
for name, type_, desc in self.doc["Parameters"]:
429433
info = (type_, "".join(desc))

0 commit comments

Comments
 (0)