Bryan Forbes

Results 81 comments of Bryan Forbes

The "simplest" way I found to do this was as follows: ```typescript import { FormControl, ɵFormControlCtor } from "@angular/forms"; export interface MyFormControl extends FormControl {} export const MyFormControl: ɵFormControlCtor =...

Thanks for the suggestion. That's one of the things I want to work into this generator but haven't had time to do. Hopefully I can get some time in the...

I think you're right that `await asyncpg.create_pool()` will never produce `None` since `create_pool()` is returning a brand new `Pool` that won't have `_initialize` set, so awaiting the new `Pool` will...

By way of example, if `create_pool()` is typed as an `async` function, the following is the result: ```python import asyncpg async def main() -> None: pool = await asyncpg.create_pool() reveal_type(pool)...

I changed the typing of `asyncpg.create_pool()` to an `async` function in e387d77f6af463e8cebe3e4601ed44adfb9cc6d0 and made a new release (0.26.5)

Evidently, I didn't take into account using `asyncpg.Pool` as a context manager, so I'm back to the drawing board on this. I reverted the change in 94eaa963efc612018e8e89f08a7366d8e950d9f4 and released 0.26.6....

Would you be able to put together a small reproducible test case? In order to diagnose this, we would need to see exactly how you're instantiating the store, the model,...

From the code you have provided, it looks like there are two problems: 1. You're using `dojo.data.ItemFileWriteStore` with `dojo.store.Observable`. These two APIs are not compatible and may produce undesirable results....

I started hitting this issue today with `svelte-language-server` version 0.16.12 on macOS so I did some digging. In my current SvelteKit project, the LS is sending `client/registerCapability` with `workspace/didChangeWatchedFiles` with...

I've run into a similar issue using buildroot with bind mounts. Some libraries/projects instruct `libtool` to make hard links to build files in a temporary directory before it links the...