Passed
Pull Request — master (#40)
by Paolo
01:24
created

excel.helpers   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 16
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
"""
4
Created on Fri Jul  5 16:30:14 2019
5
6
@author: Paolo Cozzi <[email protected]>
7
"""
8
9
from .exceltemplate import ExcelTemplateReader, TEMPLATE_COLUMNS
10
from .exceptions import ExcelImportError
11
from .fill_uid import upload_template
12
13
__all__ = [
14
    "ExcelTemplateReader", "TEMPLATE_COLUMNS", "ExcelImportError",
15
    "upload_template"]
16