Add parens to dotdict repr.

This commit is contained in:
voussoir 2021-05-08 09:39:22 -07:00
parent 65f766928c
commit 133225f77c
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -28,4 +28,4 @@ class DotDict:
def __repr__(self):
display = self.__dict__.copy()
display.pop('_DotDict__default')
return f'DotDict {display}'
return f'DotDict({display})'