mirror of
https://github.com/lancedb/lancedb.git
synced 2026-06-03 04:10:41 +00:00
fix(python): collapse nested if to fix CI issue
This commit is contained in:
@@ -1172,10 +1172,10 @@ impl Table {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if let Some(replace) = update.get_item("replace")? {
|
if let Some(replace) = update.get_item("replace")?
|
||||||
if replace.extract::<bool>()? {
|
&& replace.extract::<bool>()?
|
||||||
field_update = field_update.replace();
|
{
|
||||||
}
|
field_update = field_update.replace();
|
||||||
}
|
}
|
||||||
Ok(field_update)
|
Ok(field_update)
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user