diff --git a/pyproject.toml b/pyproject.toml index abe8dc9..56d4389 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "socketsecurity" -version = "2.1.10" +version = "2.1.11" requires-python = ">= 3.10" license = {"file" = "LICENSE"} dependencies = [ diff --git a/socketsecurity/__init__.py b/socketsecurity/__init__.py index 7119d9d..fd7e3a2 100644 --- a/socketsecurity/__init__.py +++ b/socketsecurity/__init__.py @@ -1,2 +1,2 @@ __author__ = 'socket.dev' -__version__ = '2.1.10' +__version__ = '2.1.11' diff --git a/socketsecurity/socketcli.py b/socketsecurity/socketcli.py index b468e9a..a7afd18 100644 --- a/socketsecurity/socketcli.py +++ b/socketsecurity/socketcli.py @@ -6,8 +6,6 @@ from git import InvalidGitRepositoryError, NoSuchPathError from socketdev import socketdev from socketdev.fullscans import FullScanParams - -from core.exceptions import APIFailure from socketsecurity.config import CliConfig from socketsecurity.core import Core from socketsecurity.core.classes import Diff