Rafael Perrella

Results 10 comments of Rafael Perrella

Please also consider the case of multi-line comments. I hit this bug today as well. In my case, I had something like this: ```python if ( a_long_condition # a long...

Bumping. Pylint still doesn't understand descriptors at all (except for the few ones that seem to be hardcoded in pylint, like classmethod, property etc). Edit: here's an example that confuses...

I found https://github.com/astral-sh/ruff/issues/5196 while trying to migrate from pylint to ruff, but since that was closed as a duplicate to this one, I'm commenting here instead. My case is similar...

I'm testing `socketify==0.0.27`. I'm not sure if this is related to my issue, but probably. I'm using hypercorn + fastapi, but trying to improve performance, so I started looking for...

@YarShev There is. It's not possible to use pandas 2.2 and snowflake-sqlalchemy in the same project. - `pandas>=2.2` requires `sqlalchemy>=2.0`: https://github.com/pandas-dev/pandas/blob/main/pyproject.toml#L115 - `snowflake-sqlalchemy` requires `sqlalchemy>=1.4.19,

> @rafaelclp then what would you recommend? We could also consider installing Snowflake from that feature branch for the short term hoping they'll eventually fix it? This is **just my...

I just sent them a message in the website about this exact problem, then I noticed they have a github repo. I'm glad someone else feels the same way. I...

@onmyway133 Thank you so much, it's much better now! It does feel laggy still, but for a different reason. It's like the whole paste history is being re-rendered as the...

I just found out that you can disable "Lazy load items in schema", which fixes the issue for me. I will leave this issue open as it's real - autocompletion...

We extend the `NewRelicContextFormatter` to add more data to the log record dict: ```python class OurNewRelicContextFormatter(NewRelicContextFormatter): @classmethod def log_record_to_dict(cls, record) -> dict[str, Any]: log_dict = super().log_record_to_dict(record) # ... add more...