Conditions | 3 |
Total Lines | 8 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0175 |
Changes | 0 |
1 | 1 | from .client import Client |
|
6 | 1 | def __init__(self, args): |
|
7 | 1 | super().__init__(args) |
|
8 | 1 | self.display_html = True if self.out is None else self.arg.display |
|
9 | 1 | self.show_failed_rules = self.arg.show_failed_rules |
|
10 | 1 | self.show_not_selected_rules = self.arg.show_not_selected_rules |
|
11 | 1 | self.all_in_one = self.arg.all_in_one |
|
12 | 1 | if self.all_in_one: |
|
13 | self.all_rules = True |
||
14 | |||
36 |