Ryan Lokugamage
Ryan Lokugamage
https://github.com/axios/axios/blob/v1.x/index.d.ts#L482 all the `get, post, put, delete` etc. still require a url string, shouldn't it also be `url?: string`
@elprans @amacfie-tc did this get resolved? i'm running into the issue as well, with `NullPool`
howdy, having a similar problem with mypy and snowflake-connector-python, ended up doing this redundant casting to appease mypy ```python cursor = connection.cursor(DictCursor) cursor.execute(SQL) result = cursor.fetchone() r_dict = dict(result) if...
just wanted to chime in here that I was using redis-py 5.0.1 and had mypy type issues with `Awaitable`, had to drop down to 4.6.0 and use types-redis