Work around performance issue in vobject library

This commit is contained in:
Raphael Michel
2022-01-24 15:46:48 +01:00
parent c9d3428996
commit 9d6f11718a
2 changed files with 39 additions and 0 deletions

View File

@@ -25,3 +25,7 @@ from django.apps import AppConfig
class PretixHelpersConfig(AppConfig):
name = 'pretix.helpers'
label = 'pretixhelpers'
def ready(self):
from .monkeypatching import monkeypatch_all_at_ready
monkeypatch_all_at_ready()