Conditions | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | #!/usr/bin/python |
||
13 | def __init__(self, success: bool, checked_time: int, items: List[Item] = None): |
||
14 | """Initializing function |
||
15 | |||
16 | :param success: |
||
17 | :param checked_time: |
||
18 | :param items: |
||
19 | """ |
||
20 | self._success = success |
||
21 | self._time = checked_time |
||
22 | |||
23 | if items: |
||
24 | self._items = items |
||
25 | else: |
||
26 | self._items = [] |
||
27 | |||
68 |