Jonathan Tapicer

Results 4 comments of Jonathan Tapicer

> Looks like this just dropped in CFN: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#aws-resource-rds-dbcluster--examples--Creating_an_Amazon_Aurora_Serverless_v2_DB_cluster > > The what's new: https://aws.amazon.com/about-aws/whats-new/2022/10/amazon-aurora-serverless-v2-supports-aws-cloudformation/ so we should be able to support this now! and everyone can also write their...

This is still an issue with PyCharm 2022.2.1, any workaround? Pydantic's plugin doesn't help with the query's columns autocompletion.

> Installing the pydantic plugin worked for me, am running Pycharm 2022.2.1 Build #PY-222.3739.56 It does work for me when creating new instances, but it doesn't when making queries with...

I temporarily fixed it by defining and using the following custom manager in my models: ``` from geosimple.managers import GeoManager, GeoQuerySet from copy import copy class CustomGeoQuerySet(GeoQuerySet): def _clone(self, **kw):...