Skip to content

Commit e4d4689

Browse files
committed
Lint fix
1 parent 559fee6 commit e4d4689

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/token/src/erc6909/extensions/erc6909_content_uri.cairo

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ pub mod ERC6909ContentURIComponent {
1313
use openzeppelin_introspection::src5::SRC5Component;
1414
use openzeppelin_introspection::src5::SRC5Component::InternalTrait as SRC5InternalTrait;
1515
use openzeppelin_token::erc6909::ERC6909Component;
16-
use starknet::storage::{Map, StorageMapReadAccess, StorageMapWriteAccess};
17-
use starknet::storage::{StoragePointerReadAccess, StoragePointerWriteAccess};
16+
use starknet::storage::{
17+
Map, StorageMapReadAccess, StorageMapWriteAccess, StoragePointerReadAccess,
18+
StoragePointerWriteAccess,
19+
};
1820

1921
#[storage]
2022
pub struct Storage {
@@ -89,7 +91,9 @@ pub mod ERC6909ContentURIComponent {
8991
/// Sets the token URI for a given token ID.
9092
///
9193
/// Emits a `URI` event.
92-
fn _set_token_uri(ref self: ComponentState<TContractState>, id: u256, token_uri: ByteArray) {
94+
fn _set_token_uri(
95+
ref self: ComponentState<TContractState>, id: u256, token_uri: ByteArray,
96+
) {
9397
self.ERC6909ContentURI_token_uris.write(id, token_uri.clone());
9498
self.emit(URI { value: token_uri, id });
9599
}

0 commit comments

Comments
 (0)