mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Added a short flag -c to polars append --col (#12487)
# Description `dfr append --col` had a short version -c. This polar requests adds the short flag back. Reference Conversation: https://discord.com/channels/601130461678272522/1227612017171501136/1227902980628676688 Co-authored-by: Jack Wright <jack.wright@disqo.com>
This commit is contained in:
parent
741e3c3d8f
commit
50fb8243c8
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ impl PluginCommand for AppendDF {
|
|||
fn signature(&self) -> Signature {
|
||||
Signature::build(self.name())
|
||||
.required("other", SyntaxShape::Any, "other dataframe to append")
|
||||
.switch("col", "append as new columns instead of rows", None)
|
||||
.switch("col", "append as new columns instead of rows", Some('c'))
|
||||
.input_output_type(
|
||||
Type::Custom("dataframe".into()),
|
||||
Type::Custom("dataframe".into()),
|
||||
|
|
Loading…
Reference in a new issue