Simon Schmidt
Simon Schmidt
Same here: **EDIT**: Wiping .vscode sorted it out for me OS: Fedora 38 vscode: 1.80.1 dev containers extension: v0.299.0 (pre-release, but same thing with normal version) image: "mcr.microsoft.com/vscode/devcontainers/python:3.11" Happens with...
I hit the same issue, since I produce sql with `pg_dump` to begin with I was able to use `--disable-dollar-quoting` ``` pg_dump \ --schema-only \ --disable-dollar-quoting \ "$DB_URL" | sql2dbml...
For me this library causes issues with `boto3` in lambda, which in turn imports `dateutil` which imports `six` like `from six.moves import ...` which doesn't work in python3.12 with old...