We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06b498e commit 312b659Copy full SHA for 312b659
2 files changed
src/tikzplotlib/_line2d.py
@@ -290,7 +290,7 @@ def _table(obj, data): # noqa: C901
290
291
opts_str = ("[" + ",".join(opts) + "] ") if len(opts) > 0 else ""
292
posix_filepath = rel_filepath.as_posix()
293
- content.append(f"table {{opts_string}}{{{posix_filepath}}};\n")
+ content.append(f"table {{opts_str}}{{{posix_filepath}}};\n")
294
else:
295
if len(opts) > 0:
296
opts_str = ",".join(opts)
src/tikzplotlib/_path.py
@@ -206,7 +206,7 @@ def draw_pathcollection(data, obj):
206
+ " }%\n"
207
+ " \\scope[draw=thispointdrawcolor, fill=thispointfillcolor]%\n"
208
+ "}",
209
- "scatter/@post marker code/.code={%\n \\endscope\n" "}",
+ "scatter/@post marker code/.code={%\n \\endscope\n}",
210
]
211
)
212
0 commit comments