Paolo Dente

Results 15 comments of Paolo Dente

The plugin is unfortunately not compatible with the current version of PyCharm.

Same happens here (same configuration); unfortunately I cannot really apply the workaround. UPDATE: After some testing I found that the issue was caused by a library that added logging.NullHandler as...

I'm not even getting there - I run the command (in the other direction) and it simply remains there with no error, no message and absolutely no change whatsoever in...

I have a similar need with a twist: we have several "container" models that need to do things like "this object's price is the sum of all its components' prices"...

> Is there any disadvantage to using `user_factory.create()` instead of `user_factory()`? Not "disadvantage" per se but, in some cases like mine, it means updating 10k+ tests, which is not very...

Excellent, thanks - both are perfectly viable solutions, looking forward to them.

Disclaimer: I just started using the library (which is great, BTW) with zero previous experience with triggers, so I assume I'm missing something. I've tried to use aggregates (using a...

I'm trying to use this query to fetch a single file from my repo: ``` { repository(owner: "myorg", name: "myrepo") { content: object(expression: "develop:src/locale_files/de/LC_MESSAGES/django.po") { ... on Blob { text...

I'm sorry, I thought I replied but it looks like something ate my post. Here are a couple stack traces: ``` Traceback (most recent call last): File "/home/ubuntu/.virtualenvs/aenew/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55,...

No, no KEY_PREFIX in settings. What's interesting is that the cache key itself seems to work: ``` from django.core.cache import cache cache.get(b'bhS)\x81\x94}\x94(hV\x8c\x16termini-condizioni-') # outputs None cache.set(b'bhS)\x81\x94}\x94(hV\x8c\x16termini-condizioni-', "test") cache.get(b'bhS)\x81\x94}\x94(hV\x8c\x16termini-condizioni-') # outputs...