Martin
Martin
I've added this to my pre-commit config: ``` - repo: https://github.com/APIDevTools/swagger-cli rev: v4.0.4 hooks: - id: swagger-validation args: ["validate", "spec.yaml"] ``` When I run it manually, I get: ``` $...
It currently says > Enter a value compatible with User.USERNAME_FIELD and likely comes from [here](https://github.com/django-guardian/django-guardian/blob/61a6563c2df9dc08f1cd3ad58f3d2ba343a6653d/guardian/admin.py#L434-L440). I've also [asked on StackOverflow](https://stackoverflow.com/questions/71435107/how-can-i-adjust-the-user-search-of-django-guardian). Thank you already for your help :pray:
It would be nice to be able to control this to make runs reproducible. I've tried `freezegun.freeze_time`, but pdfkit even writes the microseconds.
``` >>> a = "file" >>> b = "fi" >>> c = "le" >>> a == b+c True >>> a is b+c False ```
**Describe the bug** When the pre-commit hook is installed and I commit, I get: ``` An error has occurred: InvalidManifestError: ==> File /home/martin/.cache/pre-commit/repolc31_gpb/.pre-commit-hooks.yaml ==> At Hook(id='black') ==> At key: stages...
The last release was 3 years ago: https://pypi.org/project/advocate/#history I think I just stumbled over https://stackoverflow.com/q/76002461/562769 Is there a chance of getting an update?
> "Read the presentation on Monitoring (previously named Watchdog)." I would love to do that, but the link is broken.
I just had an integer field which was non-nullable without a default value, but had "blank=True". It seems to me that this should not be allowed / that there is...