Browse Source

fix: cargo fmt

Jonathan Kelley 3 years ago
parent
commit
03110b85cd
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/core/src/nodes.rs

+ 1 - 2
packages/core/src/nodes.rs

@@ -4,7 +4,7 @@
 //! cheap and *very* fast to construct - building a full tree should be quick.
 
 use crate::{
-    innerlude::{ComponentPtr, Element, Properties, Scope, ScopeId, ScopeState, AttributeValue},
+    innerlude::{AttributeValue, ComponentPtr, Element, Properties, Scope, ScopeId, ScopeState},
     lazynodes::LazyNodes,
     AnyEvent, Component,
 };
@@ -357,7 +357,6 @@ pub struct Attribute<'a> {
     pub namespace: Option<&'static str>,
 }
 
-
 /// An event listener.
 /// IE onclick, onkeydown, etc
 pub struct Listener<'bump> {