Skip to content

Commit

Permalink
maybe fix complaining flake 8
Browse files Browse the repository at this point in the history
  • Loading branch information
s-cork committed May 16, 2024
1 parent 3d0d57f commit 16a879c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client_code/zod/helpers/dict_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get(self, key, default=None):

def __repr__(self):
items = self.__dict__.items()
return f"{type(self).__name__}({', '.join(f'{k}={v!r}' for k,v in items)})"
return f"{type(self).__name__}({', '.join(f'{k}={v!r}' for k, v in items)})"

def __str__(self):
return str(self.__dict__)

0 comments on commit 16a879c

Please sign in to comment.