Total Complexity | 2 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | |||
2 | |||
3 | class BasicNeeds: |
||
4 | |||
5 | @staticmethod |
||
6 | def fn_optional_print(self, boolean_variable, string_to_print): |
||
7 | if boolean_variable: |
||
8 | print(string_to_print) |
||
9 |