mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
code review of modules in lib/core directory
This commit is contained in:
@@ -291,7 +291,7 @@ class Dump:
|
||||
if re.search("^[\ *]*$", value): #NULL
|
||||
continue
|
||||
|
||||
temp = int(value)
|
||||
_ = int(value)
|
||||
except ValueError:
|
||||
colType = None
|
||||
break
|
||||
@@ -304,7 +304,7 @@ class Dump:
|
||||
if re.search("^[\ *]*$", value): #NULL
|
||||
continue
|
||||
|
||||
temp = float(value)
|
||||
_ = float(value)
|
||||
except ValueError:
|
||||
colType = None
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user