| Total Complexity | 0 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 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 |