Compare commits

...

1 Commits

Author SHA1 Message Date
4f67310681 Revert "Allow polars schema --datatype-list to be used without pipeline inp…"
This reverts commit fb691c0da5.
2025-06-13 12:38:53 -07:00

View File

@ -25,7 +25,7 @@ impl PluginCommand for SchemaCmd {
fn signature(&self) -> Signature {
Signature::build(self.name())
.switch("datatype-list", "creates a lazy dataframe", Some('l'))
.input_output_type(Type::Any, Type::record())
.input_output_type(Type::Custom("dataframe".into()), Type::record())
.category(Category::Custom("dataframe".into()))
}