Skip to content

Commit

Permalink
chore: named imports
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Dec 5, 2024
1 parent 47d1744 commit 52a62ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion certora/helpers/MockDllFifo.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.0;

import "../munged-fifo/DoubleLinkedList.sol";
import {DoubleLinkedList} from "../munged-fifo/DoubleLinkedList.sol";

contract MockDllFifo {
using DoubleLinkedList for DoubleLinkedList.List;
Expand Down
2 changes: 1 addition & 1 deletion certora/helpers/MockDllSimple.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.0;

import "../munged-simple/DoubleLinkedList.sol";
import {DoubleLinkedList} from "../munged-simple/DoubleLinkedList.sol";

contract MockDllSimple {
using DoubleLinkedList for DoubleLinkedList.List;
Expand Down

0 comments on commit 52a62ed

Please sign in to comment.