Format with rustfmt 0.7.0
diff --git a/src/attr.rs b/src/attr.rs
index 6f50e0a..2d0f244 100644
--- a/src/attr.rs
+++ b/src/attr.rs
@@ -74,8 +74,10 @@
 #[cfg(feature = "extra-traits")]
 impl PartialEq for Attribute {
     fn eq(&self, other: &Self) -> bool {
-        self.style == other.style && self.pound_token == other.pound_token
-            && self.bracket_token == other.bracket_token && self.path == other.path
+        self.style == other.style
+            && self.pound_token == other.pound_token
+            && self.bracket_token == other.bracket_token
+            && self.path == other.path
             && TokenStreamHelper(&self.tts) == TokenStreamHelper(&other.tts)
             && self.is_sugared_doc == other.is_sugared_doc
     }