Bryan Gillespie
Bryan Gillespie
Thanks, but it appears these workarounds still don't catch the issue. For example: ``` import createClient from "openapi-fetch"; import type { paths } from "./petstore"; // generated by openapi-typescript const...
@Elgueromiranda That defeats the purpose of `openapi-typescript` if I need to re-define the body types.
I spent several hours trying to figure this one out because I really want it fixed. The problem I've decided is that TypeScript does not have good tooling for debugging...
``` ModuleNotFoundError: No module named 'imp' ``` Is likely because you are on python 3.12. Downgrade to 3.11 or clone repo instead of using pip.
Depends, what's your linux distro? Probably easiest way is to just continue to use python 3.12, but clone the repo to use it instead of installing from pypi
Well, start with [running the demo](https://github.com/Brikwerk/nxbt?tab=readme-ov-file#running-the-demo): ``` python3 demo.py ``` Looks like the general entrypoint is `cli.py` in the nxbt folder so you could also try ``` python3 nxbt/cli.py demo...
Try running with `sudo`. Also, you may just want to take some time to learn python and linux in general, it will help you greatly in troubleshooting these types of...
> I did author PR #162 to update the dependencies that were causing the issue, and I tested and confirmed that the software still worked. I just don't know if...
I got it to work by creating a file in the repo root called `test.py` containing: ``` import nxbt RETURN_TO_GAME_MACRO = """ 6s A 0.1s 1s B 0.1s 1s B...
Yeah this is one of the many unfortunate consequences of using python. I suspect it's because you are on too new of a python version (3.12). Python 3.12 doesn't appear...