From b0547e4c37ed9038e2f33b48044c4df6a17cab17 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 28 Feb 2024 18:45:24 +0700 Subject: [PATCH] fixed linting --- .../services/progress_action/wait_progress_action.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/chain_service/services/progress_action/wait_progress_action.py b/chain_service/services/progress_action/wait_progress_action.py index 86b908c..4651e2c 100644 --- a/chain_service/services/progress_action/wait_progress_action.py +++ b/chain_service/services/progress_action/wait_progress_action.py @@ -1,10 +1,5 @@ -from .base import BaseProgressActionService -from chain_service.database.models.progress_chain import ( - ProgressChain, - WaitProgressAction, -) - import asyncio +from .base import BaseProgressActionService class WaitProgressActionService(BaseProgressActionService):