biqqles
biqqles
Oh, just realised I should be using [influxdb-client-python](https://github.com/influxdata/influxdb-client-python). I'll have to test with that library in case the issue is simply due to an incompatibility with InfluxDB 1.8. Perhaps a...
Thank you for your detailed code but I am unable to reproduce this issue on either 3.4.0, the commit you listed or current main. Could you check whether you get...
No idea what would be required without trying it (I haven't used the library before). You can see https://github.com/biqqles/dataclassy/issues/37 for a similar scenario. The core feature of a way to...
I added a quick implementation of this to the 'from_dict' branch. Would you be able to try it and tell me what you think?
This is very curious, I will look into it.
Ah, my guess is that `super()` doesn't like that what `Dummy` is has changed between the time `__setattr__` was defined and the time it is called. This is because dataclassy...
Did that solve your issue fully? I still want to get to the bottom of this so I will keep this open regardless.
Thanks for your detailed reply. > so I could read and understand the mechanics This was nice to read! It's why I advertise dataclassy's small size (25% of the LOC...
See https://github.com/biqqles/dataclassy/issues/34#issuecomment-824197151 for progress on the last wish.
By the way, I really like your converter idea too. Better workaround for this issue: ```python from dataclassy import dataclass @dataclass class DummyBase: pass class Dummy(DummyBase): def __setattr__(self, name, value):...