Skip to content

Commit 9b696fd

Browse files
committed
reformat
1 parent 2759443 commit 9b696fd

34 files changed

Lines changed: 40 additions & 50 deletions

src/plot/facet/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! This module defines faceting configuration for small multiples.
44
5-
use crate::plot::types::{ParamConstraint, ParamDefinition, DefaultParamValue};
5+
use crate::plot::types::{DefaultParamValue, ParamConstraint, ParamDefinition};
66
use crate::plot::ParameterValue;
77
use serde::{Deserialize, Serialize};
88
use std::collections::HashMap;

src/plot/layer/geom/area.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use crate::plot::layer::orientation::{ALIGNED, ORIENTATION_VALUES};
44
use crate::plot::types::DefaultAestheticValue;
5-
use crate::plot::{ParamDefinition, DefaultParamValue};
5+
use crate::plot::{DefaultParamValue, ParamDefinition};
66
use crate::{naming, Mappings};
77

88
use super::types::{ParamConstraint, POSITION_VALUES};

src/plot/layer/geom/arrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use super::types::POSITION_VALUES;
44
use super::{
5-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
5+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
66
};
77
use crate::plot::types::DefaultAestheticValue;
88

src/plot/layer/geom/bar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::collections::HashSet;
55

66
use super::types::{get_column_name, POSITION_VALUES};
77
use super::{
8-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
8+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
99
StatResult,
1010
};
1111
use crate::naming;

src/plot/layer/geom/boxplot.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ use super::{DefaultAesthetics, GeomTrait, GeomType};
77
use crate::{
88
naming,
99
plot::{
10-
geom::types::get_column_name, DefaultAestheticValue, ParamConstraint, ParamDefinition,
11-
DefaultParamValue, ParameterValue, StatResult,
10+
geom::types::get_column_name, DefaultAestheticValue, DefaultParamValue, ParamConstraint,
11+
ParamDefinition, ParameterValue, StatResult,
1212
},
1313
reader::SqlDialect,
1414
DataFrame, GgsqlError, Mappings, Result,
@@ -496,7 +496,6 @@ mod tests {
496496
assert!(outlier_section.contains("raw.year = summary.year"));
497497
}
498498

499-
500499
// ==================== GeomTrait Implementation Tests ====================
501500

502501
#[test]

src/plot/layer/geom/density.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ use super::{DefaultAesthetics, GeomTrait, GeomType};
55
use crate::{
66
naming,
77
plot::{
8-
geom::types::get_column_name, DefaultAestheticValue, ParamConstraint, ParamDefinition,
9-
DefaultParamValue, ParameterValue, StatResult,
8+
geom::types::get_column_name, DefaultAestheticValue, DefaultParamValue, ParamConstraint,
9+
ParamDefinition, ParameterValue, StatResult,
1010
},
1111
reader::SqlDialect,
1212
GgsqlError, Mappings, Result,

src/plot/layer/geom/errorbar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
use super::types::POSITION_VALUES;
44
use super::{
5-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
5+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
66
};
77
use crate::plot::types::DefaultAestheticValue;
88

src/plot/layer/geom/histogram.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::collections::HashMap;
44

55
use super::types::{get_column_name, CLOSED_VALUES, POSITION_VALUES};
66
use super::{
7-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
7+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
88
StatResult,
99
};
1010
use crate::naming;

src/plot/layer/geom/line.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Line geom implementation
22
33
use super::{
4-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
4+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
55
StatResult,
66
};
77
use crate::plot::layer::orientation::{ALIGNED, ORIENTATION_VALUES};

src/plot/layer/geom/linear.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Linear geom implementation
22
33
use super::{
4-
DefaultAesthetics, GeomTrait, GeomType, ParamConstraint, ParamDefinition, DefaultParamValue,
4+
DefaultAesthetics, DefaultParamValue, GeomTrait, GeomType, ParamConstraint, ParamDefinition,
55
};
66
use crate::plot::layer::orientation::{ALIGNED, ORIENTATION_VALUES};
77
use crate::plot::types::DefaultAestheticValue;

0 commit comments

Comments
 (0)