Raised on attempted env var loads whose default values are too rich. E.g. trying to stuff ``MY_VAR="foo"`` into ``{'my_var': ['uh', 'oh']}`` doesn't make any sense until/if we implement some sort of transform option. .. versionadded:: 1.0
| 264 | |
| 265 | |
| 266 | class UncastableEnvVar(Exception): |
| 267 | """ |
| 268 | Raised on attempted env var loads whose default values are too rich. |
| 269 | |
| 270 | E.g. trying to stuff ``MY_VAR="foo"`` into ``{'my_var': ['uh', 'oh']}`` |
| 271 | doesn't make any sense until/if we implement some sort of transform option. |
| 272 | |
| 273 | .. versionadded:: 1.0 |
| 274 | """ |
| 275 | |
| 276 | pass |
| 277 | |
| 278 | |
| 279 | class UnknownFileType(Exception): |
no outgoing calls
no test coverage detected
searching dependent graphs…