inji   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 17
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
3
# -*- coding: utf-8 -*-
4
5
# NAME
6
# inji/__init__.py
7
8
# Copyright (C) 2020 Shalom Bhooshi
9
# Author: Shalom Bhooshi
10
11 1
""" Utility for rendering jinja2 templates """
12
13 1
from . import cli
14
15 1
__version__  = cli._version()
16
cli_location = cli.cli_location()
17