Martin Thoma

Results 446 comments of Martin Thoma

Thank you for answering - now I see that you linked [`boto3-stubs`](https://pypi.org/project/boto3-stubs/)

You can simply add a `conftest.py` with the following content: import logging def pytest_configure(config): """Flake8 is very verbose by default. Silence it.""" logging.getLogger("flake8").setLevel(logging.WARNING)

This was answered here: http://stackoverflow.com/a/34687991/562769 However, an explanation should be in the docs.

I love the original paper, but I also felt that I didn't understand crucial parts. > I have been trying to write a blog Cool, I'm looking forward to it!...

I didn't setup any manager explicitly for those models. I create those models like this: ```python from django.db import models import uuid class Base(models.Model): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) class...

I actually also use Django money. I thought it was not related :thinking:

Using the interactive shell: ``` >>> type(FooModel.objects) djmoney.models.managers.money_manager..MoneyManager ```

Any update on this? Any recommended work-around? At the moment, I get: > error: Name 'db.Model' is not defined They are of type `sqlalchemy.ext.declarative.api.Model`, but I'm not even sure why...

Poetry being slow to resolve dependencies seems to be a reoccuring issue: * #476 - Poetry resolving dependencies is amazingly slow * #819 - Resolving dependencies are slow * #832...