Coverage for / var / devmt / py / ghmdlib_0.1.0 / ghmdlib / __init__.py: 50%
6 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-05 11:04 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-05 11:04 +0000
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3"""
4:Purpose: Project initialisation module.
6:Platform: Linux/Windows | Python 3.10+
7:Developer: J Berendt
8:Email: development@s3dev.uk
10:Comments: n/a
12"""
14# locals
15try:
16 from .ghmd import converter
17 from .libs._version import __version__
18except ImportError:
19 from ghmdlib.ghmd import converter
20 from ghmdlib.libs._version import __version__