From 10815081f7a1c5a630d49cc254c8d7894b880eaf Mon Sep 17 00:00:00 2001 From: ernestognw Date: Wed, 12 Jul 2023 21:09:18 -0600 Subject: [PATCH] Lint --- contracts/token/ERC721/extensions/ERC721Pausable.sol | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contracts/token/ERC721/extensions/ERC721Pausable.sol b/contracts/token/ERC721/extensions/ERC721Pausable.sol index 0820cf183..17e89b67d 100644 --- a/contracts/token/ERC721/extensions/ERC721Pausable.sol +++ b/contracts/token/ERC721/extensions/ERC721Pausable.sol @@ -27,7 +27,11 @@ abstract contract ERC721Pausable is ERC721, Pausable { * * - the contract must not be paused. */ - function _update(address to, uint256 tokenId, address operatorCheck) internal virtual override whenNotPaused returns (address) { + function _update( + address to, + uint256 tokenId, + address operatorCheck + ) internal virtual override whenNotPaused returns (address) { return super._update(to, tokenId, operatorCheck); } }