Files
nushell/crates/nu_plugin_polars/src/dataframe/mod.rs
Jack Wright f531cc2058 Polars command reorg (#13798)
# Description
House keeping. Restructures polars modules as discussed in:
https://docs.google.com/spreadsheets/d/1gyA58i_yTXKCJ5DbO_RxBNAlK6S7C1M22ppKwVLZltc/edit?usp=sharing
2024-09-06 13:46:37 -07:00

16 lines
329 B
Rust

use nu_protocol::{ShellError, Span};
pub mod command;
mod utils;
pub mod values;
pub fn missing_flag_error(flag: &str, span: Span) -> ShellError {
ShellError::GenericError {
error: format!("Missing flag: {flag}"),
msg: "".into(),
span: Some(span),
help: None,
inner: vec![],
}
}