Returns CustomConfigParser object that we will use for all our actions. Must be overriden in all classes that use this mix-in.
(self)
| 203 | return defaultfunc(*(lst + list(args))) |
| 204 | |
| 205 | def getconfig(self): |
| 206 | """Returns CustomConfigParser object that we will use |
| 207 | for all our actions. |
| 208 | |
| 209 | Must be overriden in all classes that use this mix-in.""" |
| 210 | |
| 211 | raise NotImplementedError("ConfigHelperMixin.getconfig() " |
| 212 | "is to be overriden") |
| 213 | |
| 214 | |
| 215 |
no outgoing calls
no test coverage detected