mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Pleasing the pylint gods
This commit is contained in:
parent
95560da7c1
commit
4077cd2342
25 changed files with 74 additions and 75 deletions
|
|
@ -32,7 +32,7 @@ class Replication(object):
|
|||
errMsg += "file '%s' ('%s')" % (self.filepath, getSafeExString(ex))
|
||||
raise SqlmapConnectionException(errMsg)
|
||||
|
||||
class DataType:
|
||||
class DataType(object):
|
||||
"""
|
||||
Using this class we define auxiliary objects
|
||||
used for representing sqlite data types.
|
||||
|
|
@ -47,7 +47,7 @@ class Replication(object):
|
|||
def __repr__(self):
|
||||
return "<DataType: %s>" % self
|
||||
|
||||
class Table:
|
||||
class Table(object):
|
||||
"""
|
||||
This class defines methods used to manipulate table objects.
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue