Files
fm-orchestrator/module_build_service/common/modulemd.py
Chenxiong Qi 1c0715662a Cleanup module_build_service/__init__.py
Most of the code are moved to dedicated subpackages, but some others
can't due to the cycle dependencies.

Signed-off-by: Chenxiong Qi <cqi@redhat.com>
2020-03-03 14:48:48 -05:00

9 lines
171 B
Python

# -*- coding: utf-8 -*-
# SPDX-License-Identifier: MIT
import gi
gi.require_version("Modulemd", "2.0")
from gi.repository import Modulemd # noqa
__all__ = ['Modulemd']