fix: fix another 'unused-argument'
This commit is contained in:
parent
cc6ac9f6b4
commit
a79f80b808
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class UUID(sa.types.TypeDecorator):
|
||||||
# hexstring
|
# hexstring
|
||||||
return "%.32x" % value.int
|
return "%.32x" % value.int
|
||||||
|
|
||||||
def process_result_value(self, value, dialect):
|
def process_result_value(self, value, dialect): # pylint: disable=unused-argument
|
||||||
""" """
|
""" """
|
||||||
if value is None:
|
if value is None:
|
||||||
return value
|
return value
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue