Hamim Al Mahdi Russell

Results 4 issues of Hamim Al Mahdi Russell

When looping over `changes_display_dict.items` creates KeyError ``` site-packages\auditlog\registry.py", line 104, in get_model_fields 'include_fields': list(self._registry[model]['include_fields']), Exception Type: KeyError at /account/user/logs/15/detail/ Exception Value: ``` But `changes_dict.items` is ok

bug

``` celery.conf.update({ "beat_dburi": settings.SYNC_CELERY_BEAT_DATABASE_URI, 'beat_schedule': { 'run-periodic-task-every-60-seconds': { 'task': 'tasks.periodic', 'schedule': timedelta(seconds=10), }, } }) ``` ``` async def get_hero(hero_id: UUID) -> list[HeroRead]: async with SessionLocal() as session: await asyncio.sleep(5)...

Can you elaborate examples for many2many?