Skip to content

Commit

Permalink
Merge pull request #536 from nschloe/lgtm
Browse files Browse the repository at this point in the history
lgtm
  • Loading branch information
nschloe committed Jan 31, 2022
2 parents 06b498e + 5b020c5 commit 74b9039
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tikzplotlib/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.0"
__version__ = "0.10.1"
2 changes: 1 addition & 1 deletion src/tikzplotlib/_line2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def _table(obj, data): # noqa: C901

opts_str = ("[" + ",".join(opts) + "] ") if len(opts) > 0 else ""
posix_filepath = rel_filepath.as_posix()
content.append(f"table {{opts_string}}{{{posix_filepath}}};\n")
content.append(f"table {{opts_str}}{{{posix_filepath}}};\n")
else:
if len(opts) > 0:
opts_str = ",".join(opts)
Expand Down
2 changes: 1 addition & 1 deletion src/tikzplotlib/_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def draw_pathcollection(data, obj):
+ " }%\n"
+ " \\scope[draw=thispointdrawcolor, fill=thispointfillcolor]%\n"
+ "}",
"scatter/@post marker code/.code={%\n \\endscope\n" "}",
"scatter/@post marker code/.code={%\n \\endscope\n}",
]
)

Expand Down

0 comments on commit 74b9039

Please sign in to comment.