Joaquim Alves Pinto

Results 11 comments of Joaquim Alves Pinto

The problem with frozen is that it does not work well with sqlalchemy for some reason, at least the way I am using it (https://github.com/cosmicpython/code/issues/17). The code bellow works. Its...

But even without them, the descriptors won't work. The behavior I am seeing is that any field I declare will override the descriptor, so the descriptor will not work. If...

yes, but in that case the descriptor will not work: ``` python >>> a = Address('ba','be') >>> a.street = 'fadfadf' >>> a Address(street='fadfadf', number='be') >>> ```

oh, I see. I was doing two different assignments to the same name, one for the descriptor and another for the actual attributes, just like the way I was doing...

I am having some difficulties still. Now I had to add some more code to my example. I included a `House` class that has an `Address` as attribute and also...

I am using stacked on a personal project. I wouldn't use those features all the time, but since it is a optional parameter it seemed something nice to have and...

> Can someone please guide me to how I can implement the image copy-paste feature in the flutter_quill. > Thank you. Did you manage to implement it?

Tks @mosquito. That is what I understood. And that is why I thought I was missing something. Like having a main app that would run indefinitely and that I could...