Hanno Zulla
Hanno Zulla
If the lambda definition exceeds the maximum line length, this please: ``` my_long_variable_name = lambda_fixture( lambda fixture_1, another_long_fixture_name, some_fixture_factory, some_long_fixture_name_again, short, wow, long_fixture_name: some_fixture_factory.create_batch( size=10, something=short, something_else=long_fixture_name, ) ``` Thank...
(btw, we were stumbling into this when we wanted to deal with the `W0640(cell-var-from-loop)` linter warning. An easy remedy to avoid lambda-in-a-loop bugs is changing: ```lambda: do_something_with(looped_variable)``` into ```lambda looped_variable=looped_variable:...
Hey there, I have learned by now that [`functools.partial`](https://docs.python.org/3/library/functools.html#functools.partial) is functionally equivalent to the way all of us use `lamba` in this issue. However, `partial` is easier to read and...
I do not maintain this code much anymore, since my own Tolino is broken by now and there has been no help whatsoever from inside Tolino to allow a 3rd...
Yes. Thanks!
PSA: Hello there. I have stopped maintaining this library, as I do not own a Tolino anymore. If this library is still useful to you, I'd want to hand it...
PSA: Hello there. I have stopped maintaining this library, as I do not own a Tolino anymore. If this library is still useful to you, I'd want to hand it...
@aquisx - Thanks so far. Were you able to get it to work later?
Hey there. I did address some of these things in the Debian packaging. You can see my packaging choices described in the [Debian source package's README]( https://salsa.debian.org/multimedia-team/sonic-pi/raw/master/debian/README.source).
After the Debian packaging, I had tried to make all compontents of Sonic Pi [using a Rakefile](https://github.com/samaaron/sonic-pi/pull/1291) to simplify building all dependencies. That effort ultimately failed, partly due to the...