Tom McLean

Results 22 comments of Tom McLean

@henryiii from https://github.com/scientific-python/cookie :)

@csciguy8 When I had a quick read through the code I did think that the code at line 2981 was a probable contender for the error. In my code, the...

I think the error is at this block of code: ```python def is_complete(self): """ Returns true if the video buffer is entirely opaque. """ if self.data is None: return False...

I managed to get it to work by doing: ```python from fastapi import Query class MyFilter(Filter): external_username__ilike: Optional[str] = Query(default=None, alias="username__ilike") ```

@mucstudio You can go to the full noVNC client by going to `localhost:6901/vnc.html` which has copy and paste

I am still getting an issue with this, in this example app: ```python from fastapi import FastAPI, Request from opentelemetry.exporter.otlp.proto.grpc import trace_exporter from opentelemetry.instrumentation.asgi import OpenTelemetryMiddleware from opentelemetry.sdk.resources import Resource...

> hi i have this issue in install of Jesse, do you know how to fix it: note: This error originates from a subprocess, and is likely not a problem...

A good example of what I would be trying to do could be tyring to include numpy in a cython project with setup-build-core

@LecrisUT Thanks, I didnt realise I could do `target_link_libraries(_ta_lib PRIVATE ta_lib)` as I wasnt sure what python_add_library(_ta_lib) was doing but that makes sense. Still struggling to get an example to...