Raphaël Slinckx

Results 9 comments of Raphaël Slinckx

The Emulation.setDeviceMetricsOverride width/height are pixel values like 1280 and 800, I see also deviceScaleFactor=1 and mobile=False as parameters, presumably these are the devtools protocol json arguments. I also use Emulation.setEmulatedMedia...

Right, it might be that the Emulation thing was only done because we are both taking an image output and a PDF output.

When using asyncpg only, you can use statement_cache_size=0 and it won't use prepared statements at all, thus working behind pgbouncer in transaction mode. My understanding is that sqlalchemy/asyncpg will use...

I think what they've done in the dropbox stub is reassign the various sqlalchemy types to their 'equivalent' python types, for better or worse (aka Integer = int). I have...

Would there be a way to define some kind of manual type where Class.col would return the regular Column[Integer] from sqlalchemy, and Class().col would return a manually defined python type,...

> yeah i specifically did not want to do that, and I had assumed the plugin would be relied upon. im hoping tools like pylance add logic that's specific to...

See for example: https://github.com/microsoft/pylance-release/issues/845#issuecomment-801202038

The pull request does suppress the red wiggles, in that it now considers an object-level as Any, and so is compatible with anything. it does not suppress errors on the...

There seem to be now support for full-page image screenshots of websites, but digging into the code it seems to use a different method than the PDF conversion. The screenshot...