CoolCat467

Results 176 comments of CoolCat467

More likely than not you are encountering the SSL issue several other people have been encountering. Please see https://github.com/IgorTimofeev/MineOS/wiki/SSL-issue. If it is indeed the SSL issue, basically you need to...

With https://github.com/python/mypy/pull/17376 being merged we should be able to check off `enum.nonmember`, no?

How to handle future improvements when we can have multiple guest runs able to run at once?

For line number debugging purposes, which exact version of Trio are you using? For example, on my machine, I can do this to get the version: ```python >>> import trio...

I've got this based off your minimal example: ```python from __future__ import annotations import trio from contextlib import asynccontextmanager, AbstractAsyncContextManager from collections.abc import Callable, AsyncGenerator from typing import TypeVar T...

> Hah, I actually read a lot of docstrings in the live prompt with `help()` when coding (as I don't have hover-to-get-docstring configured). > > But it sounds like the...

It's supposed to be `mypy[fastercache]`, but fails on pypi because orjson is programmed in rust and uses the C api

This is a duplicate of https://github.com/fnuecke/oc2/discussions/136, https://github.com/fnuecke/oc2/discussions/266, https://github.com/fnuecke/oc2/discussions/136, and many others. Basically on hiatus at the moment it seems. [There was an issue with the underlying emulator](https://github.com/fnuecke/sedna/issues/12), but apparently that...

I am also having a similar issue

I've actually already written a forgeData response reader for my discord bot StatusBot [(decoder module linked here)](https://github.com/CoolCat467/StatusBot/blob/main/src/StatusBot/decode_mods.py), it would just be a matter of making a nice interface for it...