Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonpete32 committed Oct 7, 2023
1 parent f72a9af commit 1c17285
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/TimeShiftLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ library TimeShiftLib {

error InvalidTimeShift();

// solhint-disable-next-line code-complexity
function applyShift(uint40 time, EncodedTimeShift shift) internal pure returns (uint40) {
(TimeUnit unit, int40 offset) = shift.decode();

Expand Down
2 changes: 1 addition & 1 deletion test/base/TribeTest.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.17;

import "forge-std/Test.sol";
import { Test } from "forge-std/Test.sol";

contract TribeTest is Test {
function account(string memory label) internal returns (address addr) {
Expand Down

0 comments on commit 1c17285

Please sign in to comment.