Return True if no sections after removing empty sections.
(self)
| 119 | self.remove_section(section) |
| 120 | |
| 121 | def IsEmpty(self): |
| 122 | "Return True if no sections after removing empty sections." |
| 123 | self.RemoveEmptySections() |
| 124 | return not self.sections() |
| 125 | |
| 126 | def Save(self): |
| 127 | """Update user configuration file. |