Leon Günther
Leon Günther
In our app we offer a switch to show/hide tooltips. After hiding the toottips once they loose the css class set by `theme` and style attributes like `max-width` etc. Code...
kwargs like `format` get ignored, because the super does not get called correctly. ```py # currently: super(Named, self).__init__(self.url) # should be: super(Named, self).__init__(self.url, override=False, **kwargs) ``` also using `format="image"` crashes...
Made it so its easier to use `inference_realesrgan.py` to be used in other scripts as `inference_realesrgan.run()`. Not sure if this is useful to anybody else, but I needed it for...
In our project we use [Apollo-Client for React](https://www.apollographql.com/docs/react/) and Strawberry. We want to use abort signals to abort the executions of a queries to safe resources. While using the simple...
In our App we use MonacoEditorReactComp, [python-lsp-server](https://github.com/python-lsp/python-lsp-server) and all code files are on a server. So we register our own `openCodeEditor()` to handle go to definitions, since the client cant...