Skip to content

Commit 06e7337

Browse files
committed
Fixed calling new function
1 parent 56ebde6 commit 06e7337

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.1.34"
9+
version = "2.1.35"
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,2 +1,2 @@
11
__author__ = 'socket.dev'
2-
__version__ = '2.1.34'
2+
__version__ = '2.1.35'

socketsecurity/core/git_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def is_on_default_branch(self) -> bool:
412412
return False
413413

414414
@staticmethod
415-
def ensure_safe_directory(self, path: str) -> None:
415+
def ensure_safe_directory(path: str) -> None:
416416
# Ensure the repo is marked as safe for git (prevents SHA empty/dubious ownership errors)
417417
try :
418418
import subprocess

0 commit comments

Comments
 (0)