mayve fix ci

This commit is contained in:
Darren Schroeder 2021-10-05 11:14:31 -05:00
parent 11b40a6c31
commit 51a43f5617
2 changed files with 2 additions and 7 deletions

View File

@ -13,7 +13,7 @@
//! needed. For example: //! needed. For example:
//! //!
//! ```rust //! ```rust
//! use grid::{Grid, GridOptions, Direction, Filling, Cell}; //! use super::grid::{Grid, GridOptions, Direction, Filling, Cell};
//! //!
//! let mut grid = Grid::new(GridOptions { //! let mut grid = Grid::new(GridOptions {
//! filling: Filling::Spaces(1), //! filling: Filling::Spaces(1),

View File

@ -1,8 +1,3 @@
// use nu_protocol::ast::{Call, PathMember};
// use nu_protocol::engine::{Command, EvaluationContext};
// use nu_protocol::{Signature, Span, Spanned, SyntaxShape, Value};
// use nu_table::StyledString;
// use std::collections::HashMap;
use super::grid::{Alignment, Cell, Direction, Filling, Grid, GridOptions}; use super::grid::{Alignment, Cell, Direction, Filling, Grid, GridOptions};
use nu_engine::CallExt; use nu_engine::CallExt;
use nu_protocol::{ use nu_protocol::{
@ -10,7 +5,7 @@ use nu_protocol::{
engine::{Command, EvaluationContext}, engine::{Command, EvaluationContext},
Signature, Span, SyntaxShape, Value, Signature, Span, SyntaxShape, Value,
}; };
use terminal_size::{Height, Width}; use terminal_size::{Height, Width}; //{Alignment, Cell, Direction, Filling, Grid, GridOptions};
pub struct Griddle; pub struct Griddle;