Skip to content

Commit

Permalink
remove commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Brannigan committed Oct 9, 2023
1 parent cb2ba8a commit c4e1b2d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions py-polars/polars/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ def set_fmt_float(cls, fmt: FloatFmt | None = "mixed") -> type[Config]:
shape: (3,)
Series: '' [f64]
[
1.230498
1e6,
1.0000e-8
1.230498
1e6
1.0000e-8
]
>>> with pl.Config(set_fmt_float="full"):
Expand All @@ -460,9 +460,9 @@ def set_fmt_float(cls, fmt: FloatFmt | None = "mixed") -> type[Config]:
shape: (3,)
Series: '' [f64]
[
1.230498095872587,
1000000,
0.00000001
1.230498095872587
1000000
0.00000001
]
"""
Expand Down

0 comments on commit c4e1b2d

Please sign in to comment.