Conditions | 5 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # coding: utf-8 |
||
37 | def field_to_ini(field_value, ini, section, option): |
||
38 | if not ini.has_section(section): |
||
39 | ini.add_section(section) |
||
40 | |||
41 | if isinstance(field_value, bool): |
||
42 | field_value = 1 if field_value else 0 |
||
43 | elif isinstance(field_value, float): |
||
44 | field_value = round(field_value, 2) |
||
45 | |||
46 | ini[section][option] = str(field_value) |
||
47 |