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 83d98f5 commit c3327f4Copy full SHA for c3327f4
src/tikzplotlib/_line2d.py
@@ -253,9 +253,7 @@ def _table(obj, data): # noqa: C901
253
xmin, xmax = data["current mpl axes obj"].get_xlim()
254
mindate = num2date(xmin).strftime("%Y-%m-%d %H:%M")
255
maxdate = num2date(xmax).strftime("%Y-%m-%d %H:%M")
256
- data["current axes"].axis_options.append(
257
- f"xmin={{{mindate}}}, xmax={{{maxdate}}}"
258
- )
+ data["current axes"].axis_options.append(f"xmin={mindate}, xmax={maxdate}")
259
else:
260
opts = []
261
xformat = ff
0 commit comments