vaphes / pocketbase

PocketBase client SDK for python
https://pypi.org/project/pocketbase/
MIT License
331 stars 38 forks source link

Fixes #49 uploading a single FileUpload record #50

Closed m29h closed 1 year ago

m29h commented 1 year ago

The FileUpload.get() method did not sufficiently distinguish between list containing three values (filename,content,mimetype) and a list of (lists containing those three values)

It turns out that both list and str are both instances of Sequence

Fixes issue #49