Skip to content

Commit f129d3a

Browse files
committed
Fixing CI/CD errors
1 parent 36ebce6 commit f129d3a

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.7.177"
23+
VERSION = "1.10.7.178"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/techniques/nosql/inject.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
from lib.utils.nonsql import InconclusiveError
2424
from lib.utils.nonsql import INCONCLUSIVE_MARK
2525
from lib.utils.nonsql import resolveBit
26-
from lib.utils.nonsql import decide as _decide
27-
from lib.utils.nonsql import Decision as _Decision
2826
from lib.core.data import conf
2927
from lib.core.data import kb
3028
from lib.core.data import logger

0 commit comments

Comments
 (0)