11use crate :: {
2+ ExceptionId , LicenseItem , LicenseReq ,
23 error:: { ParseError , Reason } ,
34 lexer:: { Lexer , Token } ,
4- ExceptionId , LicenseItem , LicenseReq ,
55} ;
66use std:: fmt;
77
@@ -139,7 +139,7 @@ impl Licensee {
139139 original : original. to_owned ( ) ,
140140 span : lt. span ,
141141 reason : Reason :: Unexpected ( & [ "<license>" ] ) ,
142- } )
142+ } ) ;
143143 }
144144 }
145145 } ;
@@ -163,7 +163,7 @@ impl Licensee {
163163 original : original. to_owned ( ) ,
164164 span : lt. span ,
165165 reason : Reason :: Unexpected ( & [ "<exception>" ] ) ,
166- } )
166+ } ) ;
167167 }
168168 }
169169 }
@@ -172,7 +172,7 @@ impl Licensee {
172172 original : original. to_owned ( ) ,
173173 span : lt. span ,
174174 reason : Reason :: Unexpected ( & [ "WITH" ] ) ,
175- } )
175+ } ) ;
176176 }
177177 }
178178 }
@@ -288,7 +288,7 @@ impl AsRef<LicenseReq> for Licensee {
288288
289289#[ cfg( test) ]
290290mod test {
291- use crate :: { exception_id , license_id , LicenseItem , LicenseReq , Licensee } ;
291+ use crate :: { LicenseItem , LicenseReq , Licensee , exception_id , license_id } ;
292292
293293 const LICENSEES : & [ & str ] = & [
294294 "LicenseRef-Embark-Proprietary" ,
0 commit comments