Skip to content

Commit

Permalink
fix formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
blake-mealey committed Nov 10, 2021
1 parent 75f0fdf commit 92dac54
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ use std::{
str,
};

use crate::{config::{load_config_file, Config, DeploymentConfig}, logger, resources::ResourceGraph, state::{ResourceState, get_desired_graph, get_previous_state}};
use crate::{
config::{load_config_file, Config, DeploymentConfig},
logger,
resources::ResourceGraph,
state::{get_desired_graph, get_previous_state, ResourceState},
};

fn parse_project(project: Option<&str>) -> Result<(PathBuf, PathBuf), String> {
let project = project.unwrap_or(".");
Expand Down

0 comments on commit 92dac54

Please sign in to comment.