You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #404, we used a workaroung to add config_file to the kwargs (it is an input to thie `convert_cli? function).
if config_file:
kwargs["config_file"] = config_file
Actually, this whole discussion is part of a bigger problem, namely that we call
data = data_reader().read( # type: ignore[operator]
template=Template(template), file_paths=input_file, **kwargs
)
in the convert function. But, most of our reader don't actually accept kwargs, so this will always be a bit unstable. We should fix the kwargs downstream passing and general argument handling.
The text was updated successfully, but these errors were encountered:
In #404, we used a workaroung to add
config_file
to the kwargs (it is an input to thie `convert_cli? function).Actually, this whole discussion is part of a bigger problem, namely that we call
in the
convert
function. But, most of our reader don't actually accept kwargs, so this will always be a bit unstable. We should fix the kwargs downstream passing and general argument handling.The text was updated successfully, but these errors were encountered: