From d3a7ca1c5380e50bbb157b60db78cf40b655e2d2 Mon Sep 17 00:00:00 2001 From: Setzer22 Date: Thu, 24 Feb 2022 20:14:17 +0100 Subject: [PATCH] Cargo fmt --- egui_node_graph/src/error.rs | 2 +- egui_node_graph/src/graph.rs | 2 +- egui_node_graph/src/utils.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/egui_node_graph/src/error.rs b/egui_node_graph/src/error.rs index ca83f3e..8033727 100644 --- a/egui_node_graph/src/error.rs +++ b/egui_node_graph/src/error.rs @@ -6,5 +6,5 @@ pub enum EguiGraphError { NoParameterNamed(NodeId, String), #[error("Parameter {0:?} was not found in the graph.")] - InvalidParameterId(AnyParameterId) + InvalidParameterId(AnyParameterId), } diff --git a/egui_node_graph/src/graph.rs b/egui_node_graph/src/graph.rs index f043660..32301d7 100644 --- a/egui_node_graph/src/graph.rs +++ b/egui_node_graph/src/graph.rs @@ -88,4 +88,4 @@ pub struct Graph { // Connects the input of a node, to the output of its predecessor that // produces it pub connections: SecondaryMap, -} \ No newline at end of file +} diff --git a/egui_node_graph/src/utils.rs b/egui_node_graph/src/utils.rs index cfa6588..bc1c6d3 100644 --- a/egui_node_graph/src/utils.rs +++ b/egui_node_graph/src/utils.rs @@ -12,4 +12,4 @@ impl ColorUtils for egui::Color32 { self.a(), ) } -} \ No newline at end of file +}