Micah Denbraver
Micah Denbraver
It's functional now. I don't think I'll get to refactoring the selectors.
I lied, it's cleaned up now... @treyhunner should be ready.
Ah. I missed that I had changed the feel of the code example above. The JS works fine for me though. Which browser? Are you testing using Jekyll?
@treyhunner, I changed the script source link to a relative one, I'm pretty sure that's what was keeping it from working in whatever environment you were testing the changes in.
@jedmao that is probably because I deleted my clone on Github at some point. You should be able to recover this branch from the 'pull' branches Github maintains with commands...
What if `maxsize=0` disabled pooling? With requests it would look something like: ```python with requests.Session() as s: s.mount("http://", sessions.HTTPAdapter(pool_maxsize=0)) ``` It won't disable the connection pool today because `maxsize` is...
is this when accessing the related history records? or is django-simple-history interfering with other typing? would you be able to create an example project? i don't think i have enough...
Reopening. I can see I closed this issue prematurely as only part was implemented. Currently histories can be seen for deleted instances, but the deleted instances themselves can't be easily...
hi @arvidfm. i think you're missing an `await` in your `intercept_stream_stream()` maybe something more like this: ```python class MyInterceptor(BaseInterceptor): async def intercept_stream_stream( self, continuation: Callable[ # type: ignore[override] [ClientCallDetails, AsyncIterator[pow_pb2.Message]],...
I wonder if that comment is wrong.. Explicitly setting includes is needed due to the distribution package name not matching the import package name isn't it? edit: I see. src-layout...