nu_plugin_polars 0.112.2

Nushell dataframe plugin commands based on polars.
1
2
3
4
5
6
7
8
9
use nu_protocol::{ShellError, Span, shell_error::generic::GenericError};

pub mod command;
mod utils;
pub mod values;

pub fn missing_flag_error(flag: &str, span: Span) -> ShellError {
    ShellError::Generic(GenericError::new(format!("Missing flag: {flag}"), "", span))
}