From 60dd533edfaf5bf6cc47c9c92dac0b40180e0152 Mon Sep 17 00:00:00 2001 From: Oleh Hryb Date: Fri, 2 Feb 2024 16:27:36 +0000 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=92=A1=20changed=20global=20i?= =?UTF-8?q?mports=20to=20specific?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contracts/token/common/ERC5169.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/token/common/ERC5169.sol b/contracts/token/common/ERC5169.sol index c648ab818..ed4f738d2 100644 --- a/contracts/token/common/ERC5169.sol +++ b/contracts/token/common/ERC5169.sol @@ -3,8 +3,8 @@ pragma solidity ^0.8.20; -import "../../utils/introspection/ERC165.sol"; -import "./IERC5169.sol"; +import {ERC165} from "../../utils/introspection/ERC165.sol"; +import {IERC5169} from "./IERC5169.sol"; /** * Tokenscript is a framework designed to make contract interaction easy.