Fixes CI/CD errors

This commit is contained in:
Miroslav Štampar 2026-07-19 15:10:09 +02:00
parent 8614059876
commit f56ab884c7
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.10.7.132"
VERSION = "1.10.7.133"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

View file

@ -104,7 +104,7 @@ class TestSerialized(_HashDBCase):
# a stdlib dict subclass (e.g. OrderedDict) must round-trip its data rather than
# silently degrade to its text repr (session codec: round-trip or fail loudly)
from collections import OrderedDict
import six
from thirdparty import six
val = OrderedDict([("b", 2), ("a", [1, {"n": "v"}])])
self.db.write("od", val, True)
self.db.flush()