Anatoly Kapkanov

Results 3 comments of Anatoly Kapkanov

You should encode image via base64 ``` with open("path/to/image.jpg", "rb") as img_file: encoded = base64.b64encode(img_file.read()).decode('ascii') Session1.activityImage("data:image/jpeg;base64, "+str(encoded)) ```

Try this: https://github.com/mfussenegger/nvim-lint/issues/492#issuecomment-1872975515

I'm going to describe my problem and a solution of it, I hope it'll help you ### My setup - `nvim v0.9.4` - `nvim-lint` 3ffa176 - `cppcheck 2.12.1` - `OS...