From 87d6879cc9e11396ff5f2f63decb9fc17422e14a Mon Sep 17 00:00:00 2001 From: johnson2427 Date: Thu, 27 Jun 2024 12:08:12 -0500 Subject: [PATCH] refactor: remove unused imports --- ape_aws/client.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ape_aws/client.py b/ape_aws/client.py index a9e863d..38b1a6d 100644 --- a/ape_aws/client.py +++ b/ape_aws/client.py @@ -1,17 +1,13 @@ -from ape.utils.basemodel import ManagerAccessMixin - from cryptography.hazmat.primitives.asymmetric import ec, padding from cryptography.hazmat.primitives import hashes, serialization from cryptography.hazmat.backends import default_backend from eth_account import Account -from eth_utils import to_bytes from datetime import datetime from typing import ClassVar from pydantic import BaseModel, Field, ConfigDict, field_validator import boto3 # type: ignore[import] -import json class AliasResponse(BaseModel):