(v)
| 181 | |
| 182 | |
| 183 | def _parse_int_or_str(v): |
| 184 | try: |
| 185 | return int(v) |
| 186 | except Exception: |
| 187 | return str(v) |
| 188 | |
| 189 | |
| 190 | class MyLoader1(ArgParseConfigLoader): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…