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.
1 parent 3f9607f commit e1a3e0fCopy full SHA for e1a3e0f
nipype/utils/filemanip.py
@@ -719,8 +719,7 @@ def write_rst_list(items, prefix=""):
719
720
721
def write_rst_dict(info, prefix=""):
722
- out = [f"{prefix}* {key} : {value}" for key, value in sorted(info.items())]
723
- return "\n".join(out) + "\n\n"
+ return "\n".join(f"{prefix}* {k} : {v}" for k, v in sorted(info.items())) + "\n\n"
724
725
726
def dist_is_editable(dist):
0 commit comments