Skip to content

Commit cb88584

Browse files
committed
Removed unused imports
1 parent f3f42a0 commit cb88584

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66

77
[project]
88
name = "socketsecurity"
9-
version = "2.2.58"
9+
version = "2.2.59"
1010
requires-python = ">= 3.10"
1111
license = {"file" = "LICENSE"}
1212
dependencies = [

socketsecurity/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = 'socket.dev'
2-
__version__ = '2.2.58'
2+
__version__ = '2.2.59'
33
USER_AGENT = f'SocketPythonCLI/{__version__}'

socketsecurity/core/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,10 @@
44
import tarfile
55
import tempfile
66
import time
7-
import io
87
import json
98
from dataclasses import asdict
10-
from glob import glob
11-
from io import BytesIO
129
from pathlib import Path, PurePath
13-
from typing import BinaryIO, Dict, List, Tuple, Set, Union, TYPE_CHECKING, Optional
10+
from typing import Dict, List, Tuple, Set, TYPE_CHECKING, Optional
1411

1512
if TYPE_CHECKING:
1613
from socketsecurity.config import CliConfig

0 commit comments

Comments
 (0)