Skip to content

Commit 492c3a1

Browse files
refactor: remove unused imports
An object has been imported but is not used anywhere in the file. It should either be used or the import should be removed.
1 parent 0276f1c commit 492c3a1

3 files changed

Lines changed: 0 additions & 6 deletions

File tree

codeinsight_sdk/handler.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import abc
22
from typing import List
33

4-
from .models import Project, ProjectInventory, ProjectInventoryItem, Report
5-
from .exceptions import CodeInsightError
6-
74
class Handler(abc.ABC):
85
def __init__(self, client):
96
self.client = client

tests/test_experimental.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
from codeinsight_sdk import CodeInsightClient
8-
from codeinsight_sdk.exceptions import CodeInsightError
98

109
logger = logging.getLogger(__name__)
1110

tests/test_handlers.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import pytest
22

33
from codeinsight_sdk import CodeInsightClient
4-
from codeinsight_sdk.handlers import ProjectHandler, ReportHandler
5-
from codeinsight_sdk.models import Project, Report
64

75

86
class TestHandlers(object):

0 commit comments

Comments
 (0)