3
0
Fork 0

fix: fix another 'unused-argument'

This commit is contained in:
Lance Edgar 2025-08-30 17:39:25 -05:00
parent cc6ac9f6b4
commit a79f80b808

View file

@ -104,7 +104,7 @@ class UUID(sa.types.TypeDecorator):
# hexstring
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:
return value