Skip to content

Commit 5583085

Browse files
committed
Minor type fixes
1 parent 9a2027d commit 5583085

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.14"
9+
version = "2.2.15"
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.14'
2+
__version__ = '2.2.15'
33
USER_AGENT = f'SocketPythonCLI/{__version__}'

socketsecurity/socketcli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def main_code():
114114

115115
# Git setup
116116
is_repo = False
117-
git_repo = None
117+
git_repo: Git
118118
try:
119119
git_repo = Git(config.target_path)
120120
is_repo = True

0 commit comments

Comments
 (0)