Skip to content

Commit 2545146

Browse files
committed
repr: "# pragma: no cover"
1 parent d45ca2a commit 2545146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unpythonic/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def __exit__(self, exctype, excvalue, traceback):
169169
self._env.clear() # on context exit, clear even if we are a finalized env
170170

171171
# pretty-printing
172-
def __repr__(self):
172+
def __repr__(self): # pragma: no cover
173173
bindings = ["{:s}={}".format(name, repr(value)) for name, value in self._env.items()]
174174
return "<env object at 0x{:x}: {{{:s}}}>".format(id(self), ", ".join(bindings))
175175

0 commit comments

Comments
 (0)