**Description** When running the following code from the [chdb doc page](https://clickhouse.com/docs/chdb/api/python#chdb-connect): ``` >>> # Using context manager for automatic cleanup >>> with connect("data.db") as conn: ... result = conn.query("SELECT 1") ... print(result) ``` an attribute error is thrown. **How to reproduce** * chDB version: 3.6.0 * Python version: 3.8.10 * Start the Python interactive interpreter * Enter the code from the description above **Expected behavior** Output: ``` 1 ``` Connection is automatically closed. **Actual behaviour** Error message: ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: __enter__ ```