MCPcopy
hub / github.com/pydata/xarray / format_row

Function format_row

xarray/coding/cftimeindex.py:181–183  ·  view source on GitHub ↗

Format a single row from format_times.

(times, indent=0, separator=", ", row_end=",\n")

Source from the content-addressed store, hash-verified

179
180
181def format_row(times, indent=0, separator=", ", row_end=",\n"):
182 """Format a single row from format_times."""
183 return indent * " " + separator.join(map(str, times)) + row_end
184
185
186def format_times(

Callers 1

format_timesFunction · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…