summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-12-07 14:09:27 +0200
committerLars Wirzenius <liw@liw.fi>2019-12-07 14:09:27 +0200
commite4580504ecda93889981f327efa20e20dab8f063 (patch)
tree2dd258f0365c1bc86f2ce851894a936fee0aa5fb
parent37d278944bdb94ce04cd5b9cd2a97a667eae3312 (diff)
downloadvmdb2-e4580504ecda93889981f327efa20e20dab8f063.tar.gz
Fix: exclude method not used in unit tests from test coverage
-rw-r--r--vmdb/tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmdb/tags.py b/vmdb/tags.py
index f4f8799..a41f7ae 100644
--- a/vmdb/tags.py
+++ b/vmdb/tags.py
@@ -28,7 +28,7 @@ class Tags:
self._tags = {}
self._tagnames = []
- def __repr__(self):
+ def __repr__(self): # pragma: no cover
return repr({
'tags': self._tags,
'tagnames': self._tagnames,