Nathan Villagaray-Carski
Nathan Villagaray-Carski
@zachliu I added an init method with a cast to work around the mypy issue: ``` class NonCloseableBufferedReader(BufferedReader): def __init__(self, raw: IO[bytes], *args: Any, **kwargs: Any): super().__init__(cast(RawIOBase, raw), *args, **kwargs)...
This would be very helpful for us. Our deployment pipelines look like: 1. Build/Test/Deploy Staging a. Build Docker image b. Run tests on container c. Deploy container to staging env...
That would fix my specific issue, but I think users will expect all the props to be passed into the svelte:element tag when the button is disabled, since that's the...
Gotcha - what if we do something like this? https://github.com/themesberg/flowbite-svelte/pull/1339 Just opened the PR to show the change, I haven't tested it since I don't have the local dev environment...