Private
Public Access
1
0

Merge branch 'hotfix/v22.1.13'

This commit is contained in:
2024-07-26 10:27:35 +02:00
2 changed files with 1 additions and 2 deletions

View File

@@ -2164,10 +2164,9 @@ def dataplep(rowdatadf, id=0, inboard=0.88, forceunit='lbs', bands=True, barchar
pass pass
try: try:
df = pl.from_pandas(rowdatadf) df = pl.from_pandas(rowdatadf)
except ArrowInvalid: except (ArrowInvalid, ArrowTypeError):
return dataprep(rowdatadf, id=id, inboard=inboard, forceunit=forceunit, bands=bands, barchart=barchart, return dataprep(rowdatadf, id=id, inboard=inboard, forceunit=forceunit, bands=bands, barchart=barchart,
otwpower=otwpower, debug=debug,polars=True) otwpower=otwpower, debug=debug,polars=True)
else: else:
df = rowdatadf df = rowdatadf
if df.is_empty(): if df.is_empty():

Binary file not shown.