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 36f607d commit 1c439c2Copy full SHA for 1c439c2
gnuplotlib.py
@@ -1281,7 +1281,8 @@ def _split_dict(d, *keysets):
1281
def _get_cmds__setunset(cmds,options):
1282
for setunset in ('set', 'unset'):
1283
if setunset in options:
1284
- cmds += [ setunset + ' ' + setting for setting in options[setunset] ]
+ for setunset,thing in options.items():
1285
+ cmds.append(f"{setunset} {thing}")
1286
1287
def _massageProcessOptionsAndGetCmds(processOptions):
1288
r'''Compute commands to set the given process options, and massage the input, as
0 commit comments