Skip to content

Commit

Permalink
test(utils): Fix pylint empty-docstring warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gfieni committed Mar 7, 2024
1 parent 2d4502c commit 36a49f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/utils/libvirt.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
from libvirt import libvirtError
except ImportError:
class LibvirtException(Exception):
""""""
"""
Exception raised when libvirt is not installed.
"""

def __init__(self, _):
Exception.__init__(self)
Expand Down

0 comments on commit 36a49f6

Please sign in to comment.