From 3840600a735f281dc601adc28aadffbe92320e06 Mon Sep 17 00:00:00 2001
From: Bryan Chen <xlchen1291@gmail.com>
Date: Sun, 14 Feb 2021 15:09:37 +1300
Subject: [PATCH] fix clippy

---
 traits/src/nft.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/traits/src/nft.rs b/traits/src/nft.rs
index 8488ee5..e5a5d96 100644
--- a/traits/src/nft.rs
+++ b/traits/src/nft.rs
@@ -6,6 +6,7 @@ use sp_runtime::{
 use sp_std::fmt::Debug;
 
 /// Abstraction over a non-fungible token system.
+#[allow(clippy::upper_case_acronyms)]
 pub trait NFT<AccountId> {
 	/// The NFT class identifier.
 	type ClassId: Default + Copy;
-- 
GitLab