mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-06 14:04:12 +00:00
11 lines
324 B
Python
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)
|