From 24eb7819c6e1fdde8a2cae72cbe50d2b64f5e50c Mon Sep 17 00:00:00 2001 From: enitrat Date: Fri, 6 Sep 2024 16:54:29 +0200 Subject: [PATCH] fmt --- crates/evm/src/stack.cairo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/evm/src/stack.cairo b/crates/evm/src/stack.cairo index 4debfc3cb..9fa8da344 100644 --- a/crates/evm/src/stack.cairo +++ b/crates/evm/src/stack.cairo @@ -1,7 +1,7 @@ use core::fmt::{Debug, Formatter, Error, Display}; use core::nullable::{NullableTrait}; -use core::starknet::{StorageBaseAddress, EthAddress}; use core::num::traits::Bounded; +use core::starknet::{StorageBaseAddress, EthAddress}; //! Stack implementation. //! # Example //! ``` @@ -339,11 +339,11 @@ mod tests { } mod pop { + use core::num::traits::Bounded; use core::starknet::storage_base_address_const; use evm::errors::{EVMError, TYPE_CONVERSION_ERROR}; use super::StackTrait; use utils::traits::StorageBaseAddressPartialEq; - use core::num::traits::Bounded; #[test] fn test_should_pop_an_element_from_the_stack() {