ConsoleErrors.__init__()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 3
1
from typing import Sequence
2
3
# Errors for the console 2.1
4
class ConsoleErrors(Exception):
5
    def __init__(self, *args, errors: Sequence[str]):
6
        super().__init__(*args)
7
        self.errors = errors
8