forked from extern/nushell
Fix issue in external subexpression paths (#3642)
* Fix issue in external subexpression paths * new clippy dropped * clippy
This commit is contained in:
@ -134,8 +134,7 @@ impl NuDataFrame {
|
||||
from_parsed_columns(column_values, tag)
|
||||
}
|
||||
|
||||
#[allow(clippy::clippy::wrong_self_convention)]
|
||||
pub fn to_value(self, tag: Tag) -> Value {
|
||||
pub fn into_value(self, tag: Tag) -> Value {
|
||||
Value {
|
||||
value: UntaggedValue::DataFrame(PolarsData::EagerDataFrame(self)),
|
||||
tag,
|
||||
|
@ -98,8 +98,7 @@ impl NuSeries {
|
||||
from_parsed_vector(vec_values, name)
|
||||
}
|
||||
|
||||
#[allow(clippy::clippy::wrong_self_convention)]
|
||||
pub fn to_value(self, tag: Tag) -> Value {
|
||||
pub fn into_value(self, tag: Tag) -> Value {
|
||||
Value {
|
||||
value: UntaggedValue::DataFrame(PolarsData::Series(self)),
|
||||
tag,
|
||||
|
Reference in New Issue
Block a user