mirror of https://github.com/zulip/zulip.git
pythonrc: Add various frequently handy imports.
This commit is contained in:
parent
3add31496f
commit
8f0f41e236
|
@ -1,8 +1,14 @@
|
|||
try:
|
||||
from django.conf import settings # noqa: F401
|
||||
from django.conf import settings
|
||||
|
||||
from analytics.models import * # noqa: F403
|
||||
from zerver.models import * # noqa: F403
|
||||
from zerver.models.realms import * # noqa: F403
|
||||
from zerver.models.streams import * # noqa: F403
|
||||
from zerver.models.users import * # noqa: F403
|
||||
|
||||
if settings.CORPORATE_ENABLED:
|
||||
from corporate.lib.stripe import * # noqa: F403
|
||||
except Exception:
|
||||
import traceback
|
||||
|
||||
|
|
Loading…
Reference in New Issue