Passed
Push — main ( c4be35...b86ad9 )
by Sat CFDI
01:42
created

satdigitalinvoice.exceptions   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 6
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A ConsoleErrors.__init__() 0 3 1
1
from typing import Sequence
2
3
4
class ConsoleErrors(Exception):
5
    def __init__(self, *args, errors: Sequence[str]):
6
        super().__init__(*args)
7
        self.errors = errors
8