Skip to content

Commit d0fe1ca

Browse files
committed
repr: "# pragma: no cover"
1 parent 2f4d126 commit d0fe1ca

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
@@ -259,7 +259,7 @@ def __setitem__(self, k, v):
259259
setattr(self, k, v)
260260

261261
# pretty-printing
262-
def __repr__(self):
262+
def __repr__(self): # pragma: no cover
263263
bindings = ["{:s}={}".format(k, repr(self[k])) for k in self]
264264
return "<dyn object at 0x{:x}: {{{:s}}}>".format(id(self), ", ".join(bindings))
265265
dyn = _Dyn()

0 commit comments

Comments
 (0)