-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IndexError
in DelayedFormat
when providing kwargs
#193
Comments
I don't exactly understand why you think there is any issue in "{a}.format(a="a") The example with CodeWrapper(DelayedFormat('lambda files: get_sub_epoch_dataset(files, **({}))', whatever_extra_kwargs_you_want)) |
I see, I didn't know that the formatted string should have the kwarg keyword between braces, thanks for clarifying. I just tried what I show below:
But I still get the error |
Yes it's exactly wrong in the same way? You are using here a positional arg ( returnn.config.CodeWrapper(
DelayedFormat(
"lambda files: get_sub_epoch_dataset(files, **({}))",
dict(dataset=dataset_copy, num_workers=num_workers, local_caching=local_caching),
)
), |
additionally to alberts suggestion above (which provides a positional arg to fill a positional arg formatting slot) I would offer
which uses kwargs for both the formatting string and the arguments to
In this case you are responsible yourself that the kwargs defined in the formatting string match those that are passed to the function. If they match, then the order would not matter. |
Thanks for the feedback everyone. I'll close this issue since the error was mine. Edit: just to clarify, everything is working as intended, I just had to set the string to what @michelwi said above. |
Hi all, I was trying to use
DelayedFormat
with a set of kwargs and I got the following error:By looking at the source code, the error seems to come to light:
Source.
The reason it's failing is that the values inside
self.kwargs
can't be unpacked in the waystr.format()
would like to use them. Indeed, I get the same error if I try something as basic as:Was this perhaps a copy-paste issue? There's no way any keyword arguments will be respected in the formatting function. Moreover, if I remember correctly the dictionary composed of the kwargs isn't guaranteed to have the right order before python 3.something (3.7?), so
kwargs.values()
wouldn't work either.If you think I'm using the code wrong, please let me know.
The text was updated successfully, but these errors were encountered: