Skip to content

Commit c3327f4

Browse files
committed
more test fixes
1 parent 83d98f5 commit c3327f4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/tikzplotlib/_line2d.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,7 @@ def _table(obj, data): # noqa: C901
253253
xmin, xmax = data["current mpl axes obj"].get_xlim()
254254
mindate = num2date(xmin).strftime("%Y-%m-%d %H:%M")
255255
maxdate = num2date(xmax).strftime("%Y-%m-%d %H:%M")
256-
data["current axes"].axis_options.append(
257-
f"xmin={{{mindate}}}, xmax={{{maxdate}}}"
258-
)
256+
data["current axes"].axis_options.append(f"xmin={mindate}, xmax={maxdate}")
259257
else:
260258
opts = []
261259
xformat = ff

0 commit comments

Comments
 (0)