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

excel.helpers.exceptions   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 13
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:39:30 2019
5
6
@author: Paolo Cozzi <[email protected]>
7
"""
8
9
10
# A class to deal with template import errors
11
class ExcelImportError(Exception):
12
    pass
13