Previously, config was implicitly required: if the user didn't supply any configuration, then convert_config was passed None and an error was raised. The intent, however, is for config to be optional, so if a user doesn't supply any configuration, then convert_config shouldn't be called.
Previously,
config
was implicitly required: if the user didn't supply any configuration, thenconvert_config
was passedNone
and an error was raised. The intent, however, is forconfig
to be optional, so if a user doesn't supply any configuration, thenconvert_config
shouldn't be called.Fixes #35