Add parens to dotdict repr.
This commit is contained in:
parent
65f766928c
commit
133225f77c
1 changed files with 1 additions and 1 deletions
|
@ -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})'
|
||||
|
|
Loading…
Reference in a new issue