Skip to content

Commit 74b9039

Browse files
authored
Merge pull request #536 from nschloe/lgtm
lgtm
2 parents 06b498e + 5b020c5 commit 74b9039

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/tikzplotlib/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.10.0"
1+
__version__ = "0.10.1"

src/tikzplotlib/_line2d.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def _table(obj, data): # noqa: C901
290290

291291
opts_str = ("[" + ",".join(opts) + "] ") if len(opts) > 0 else ""
292292
posix_filepath = rel_filepath.as_posix()
293-
content.append(f"table {{opts_string}}{{{posix_filepath}}};\n")
293+
content.append(f"table {{opts_str}}{{{posix_filepath}}};\n")
294294
else:
295295
if len(opts) > 0:
296296
opts_str = ",".join(opts)

src/tikzplotlib/_path.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def draw_pathcollection(data, obj):
206206
+ " }%\n"
207207
+ " \\scope[draw=thispointdrawcolor, fill=thispointfillcolor]%\n"
208208
+ "}",
209-
"scatter/@post marker code/.code={%\n \\endscope\n" "}",
209+
"scatter/@post marker code/.code={%\n \\endscope\n}",
210210
]
211211
)
212212

0 commit comments

Comments
 (0)