Conditions | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | from coala_decorators.decorators import generate_eq, generate_repr |
||
33 | def check(self): |
||
34 | """ |
||
35 | Check if the requirement is satisfied. |
||
36 | |||
37 | >>> PackageRequirement('pip', 'coala_decorators', '0.2.1').check() |
||
38 | Traceback (most recent call last): |
||
39 | ... |
||
40 | NotImplementedError |
||
41 | |||
42 | :return: Returns True if satisfied, False if not. |
||
43 | """ |
||
44 | raise NotImplementedError |
||
45 |