Pleasing the pylint gods

This commit is contained in:
Miroslav Stampar
2019-05-29 16:42:04 +02:00
parent 95560da7c1
commit 4077cd2342
25 changed files with 74 additions and 75 deletions

View File

@@ -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.
"""