2025-11-10 20:06:38 +03:00

11 lines
324 B
Python

# -*- coding: utf-8 -*-
def load_ipython_extension(ipython):
from django.core.management.color import no_style
from django_extensions.management.shells import import_objects
imported_objects = import_objects(
options={"dont_load": []},
style=no_style(),
)
ipython.push(imported_objects)