Results 8 comments of David Katz

This one is working fine ```python import pdpipe from sys import path path.append("/some_external_folder") import temp ``` This one is raising `ModuleNotFoundError` ```python from sys import path import pdpipe path.append("/some_external_folder") import...

```python import sys # Hack to keep NLTK's "tokenize" module from colliding with the "tokenize" in # the Python standard library. OLD_SYS_PATH = sys.path[:] sys.path = [p for p in...

Hi @AnnMarieW, Thanks for the quick response. I noticed that it works fine with Dash callbacks. Upon debugging in the browser, I found that in the case of `dmc.Notification`, `this.props.n_clicks`...

Additionally, the same issue occurred with the `message` prop. ```python from dash import Dash, html, callback, Output, Input, dcc, dash import dash_mantine_components as dmc @callback( Output("notifications-container", "children"), Input("notify", "n_clicks"), prevent_initial_call=True,...

This behavior comes from the `ast.parse` [here](https://github.com/google/python-fire/blob/master/fire/parser.py#L96)

The queries in the tests are from AWS docs: - [json](https://docs.aws.amazon.com/athena/latest/ug/parsing-JSON.html#converting-native-data-types-to-json) - [json_extract](https://docs.aws.amazon.com/athena/latest/ug/extracting-data-from-JSON.html#examples-extracting-properties)

@robertclaus Thanks for the quick answer! Do you have any suggestions or guidance on where I should begin?

@BSd3v Thanks for the detailed explanation. As I mentioned in the dash-mantine issue, I noticed that updating Dash indeed improves performance when using MantineProvider. However, in version 0.12, I didn’t...