Skip to content

Commit 2fc355b

Browse files
committed
fix flake8 warning
1 parent 09e1b5f commit 2fc355b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unpythonic/dynassign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def __setitem__(self, k, v):
179179

180180
# pretty-printing
181181
def __repr__(self):
182-
bindings = ["{:s}={}".format(k,repr(self[k])) for k in self]
182+
bindings = ["{:s}={}".format(k, repr(self[k])) for k in self]
183183
return "<dyn object at 0x{:x}: {{{:s}}}>".format(id(self), ", ".join(bindings))
184184

185185
def make_dynvar(**bindings):

0 commit comments

Comments
 (0)