forked from platypush/platypush
parse_numpy
should also catch AttributeError
.
This commit is contained in:
parent
12f38281e1
commit
8b9ac59167
1 changed files with 2 additions and 2 deletions
|
@ -46,8 +46,8 @@ class Message:
|
|||
if isinstance(obj, (bytes, bytearray)):
|
||||
return '0x' + ''.join([f'{x:02x}' for x in obj])
|
||||
if callable(obj):
|
||||
return '<function at {}.{}>'.format(obj.__module__, obj.__name__)
|
||||
except (ImportError, TypeError):
|
||||
return f'<function at {obj.__module__}.{obj.__name__}>'
|
||||
except (AttributeError, ImportError, TypeError):
|
||||
pass
|
||||
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue