Woohoo, got rid of some delayed imports due to the circular import cases no longer existing.
This commit is contained in:
parent
a954069776
commit
e89a30f511
1 changed files with 2 additions and 3 deletions
|
|
@ -11,8 +11,10 @@ from apps.objects.managers.attribute import AttributeManager
|
||||||
from src import scripthandler
|
from src import scripthandler
|
||||||
from src import defines_global
|
from src import defines_global
|
||||||
from src import ansi
|
from src import ansi
|
||||||
|
from src import session_mgr
|
||||||
# Import as the absolute path to avoid local variable clashes.
|
# Import as the absolute path to avoid local variable clashes.
|
||||||
import src.flags
|
import src.flags
|
||||||
|
from src.util import functions_general
|
||||||
|
|
||||||
class Attribute(models.Model):
|
class Attribute(models.Model):
|
||||||
"""
|
"""
|
||||||
|
|
@ -893,6 +895,3 @@ class CommChannelMessage(models.Model):
|
||||||
|
|
||||||
class Admin:
|
class Admin:
|
||||||
list_display = ('channel', 'message')
|
list_display = ('channel', 'message')
|
||||||
|
|
||||||
from src.util import functions_general
|
|
||||||
from src import session_mgr
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue