wakemaster39

Results 20 comments of wakemaster39

constants, if I type something with `auto_attribs=True` set it automatically becomes able to be set during initialization. So I have to use init=False to ensure it is not mutable until...

oh 1000% a class var does the same thing. I don't use it often so I usually remember to just do and forget I should do something else. ```python @attrs(auto_attribs=True,...

This is true, I know that the end result would be much different in this case because sqlalchemy is being used. From my current testing, a full object is loaded...

I just wanted to add an update here as the above did not work for me. But I was able to track down how to enable it. https://www.spinics.net/linux/fedora/libvirt-users/msg13580.html `sudo systemctl...

@KingDarBoja you are 100% right that flask does not use asyncio and more specifically does not support ASGI. But this PR isn't about supporting ASGI, it is about supporting async...

@KingDarBoja I finally had the bandwidth to come back to this, its been far too long. I cleaned up and minimized the changes. There is now a single hook point...

Adding a use case here: ``` class InterfaceModel(Base): __tablename__ = "ipam_interfaces" __table_args__ = ( UniqueConstraint('vrf_id', text('host(interface)')), ) id = Column(Integer, primary_key=True) vrf_id = Column(Integer, ForeignKey("ipam_vrfs.id"), nullable=False) interface = Column(IPInterfaceType, nullable=False)...

I am unsure which of the two options you want me to do to fix the unit tests. 1, set default values for the failing tests to be None. 2,...

Ok I finally got around to cleaning up the changes that moving to Undefined makes to the unit tests. This should be good to go now. Fixed the fact I...

I think saving some sanity and dropping python 2 is a smart move. The last release ever is done now and officially retired as of Jan 1. I am a...