From dbdb404c06c24c287e7a762eadc4df93edc0f842 Mon Sep 17 00:00:00 2001 From: howydev <132113803+howydev@users.noreply.github.com> Date: Tue, 23 Jan 2024 12:35:57 -0500 Subject: [PATCH] style: removed unused const --- src/plugins/session/SessionKeyPlugin.sol | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/plugins/session/SessionKeyPlugin.sol b/src/plugins/session/SessionKeyPlugin.sol index 7960b3f8..c35239fd 100644 --- a/src/plugins/session/SessionKeyPlugin.sol +++ b/src/plugins/session/SessionKeyPlugin.sol @@ -35,9 +35,7 @@ import {Call, IStandardExecutor} from "../../interfaces/IStandardExecutor.sol"; import { AssociatedLinkedListSet, AssociatedLinkedListSetLib } from "../../libraries/AssociatedLinkedListSetLib.sol"; -import { - SetValue, SENTINEL_VALUE, SIG_VALIDATION_PASSED, SIG_VALIDATION_FAILED -} from "../../libraries/Constants.sol"; +import {SetValue, SENTINEL_VALUE, SIG_VALIDATION_FAILED} from "../../libraries/Constants.sol"; import {BasePlugin} from "../BasePlugin.sol"; import {ISessionKeyPlugin} from "./ISessionKeyPlugin.sol"; import {SessionKeyPermissions} from "./permissions/SessionKeyPermissions.sol";