#!/usr/bin/env python3
# Convenience wrapper for easily running virt-manager from the git tree

import os
import sys

sys.path.insert(0, os.path.dirname(__file__))

from virtManager import virtmanager  # noqa: E402

virtmanager.runcli()
