From 2a4b46299643a06e47ecf0da91ea9733ad6e190b Mon Sep 17 00:00:00 2001 From: p0lunin Date: Thu, 2 Jan 2020 12:04:47 +0200 Subject: [PATCH] rustfmt --- src/types/parse_mode.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/types/parse_mode.rs b/src/types/parse_mode.rs index 40a21e73..4557dfe5 100644 --- a/src/types/parse_mode.rs +++ b/src/types/parse_mode.rs @@ -2,7 +2,10 @@ // (for built ins there no warnings, but for (De)Serialize, there are) #![allow(deprecated)] -use std::{str::FromStr, convert::{TryFrom, TryInto}}; +use std::{ + convert::{TryFrom, TryInto}, + str::FromStr, +}; use serde::{Deserialize, Serialize};