1
0
Fork 0
mirror of synced 2024-06-02 18:44:59 +12:00

limit length of stringified arg_vals in exceptions

This commit is contained in:
Nick Sweeting 2019-03-27 18:26:22 -04:00
parent 8b50fee0f5
commit cc3d1e9cc9

View file

@ -138,7 +138,7 @@ def enforce_types(func):
annotation.__name__,
type(arg_val).__name__,
arg_key,
arg_val,
str(arg_val)[:64],
)
)