bashirmindee

Results 31 comments of bashirmindee

what is the expected behavior and what is happening ?

``` from tawazi import xn, dag @xn(unpack_to=1) def toto(): ... @dag def pipe(): return toto() pipe() ``` This doesn't hang locally

I am getting this: ``` Traceback (most recent call last): File "", line 1, in File "/home/bashir/mindee/tawazi/tawazi/_dag/dag.py", line 674, in __call__ return self._get_return_values(all_nodes_dict) # type: ignore[return-value] File "/home/bashir/mindee/tawazi/tawazi/_dag/dag.py", line 736,...

yes but it doesn't hang... The problem here is that `pass` means that the function doesn't return a Tuple... It returns None! This is why we have this error. For...

what action do you think should be taken ?

of course it fails because 1 is not a tuple...

Python allows for single valued Tuples... This is why it is supported. I agree that I don't see the point of having a tuple which contains a single value but...

I think we should have at least a clearer error message. Because even if we replace unpack_to=1 by unpack_to=2 we get the same error message. So I believe the problem...

I am trying to use uv in a github workflow, and I am getting an error: ``` urllib.error.HTTPError: HTTP Error 403: SSL is required ``` seems to be related to...

I had the same issue. The performance of GUNICORN suffers a lot compared to Flask indeed. I will do a PR to introduce an environment variable to modify this value....