One needs to turn off all imports of typeclasses in __init__ or django will create migrations for them. This might be interesting for the future but not for development.
This commit is contained in:
parent
749715a193
commit
969b947ba0
8 changed files with 50 additions and 45 deletions
4
ev.py
4
ev.py
|
|
@ -100,7 +100,7 @@ from src.help.models import HelpEntry
|
|||
|
||||
from src.typeclasses.models import Attribute
|
||||
# players
|
||||
from src.players.player import Player
|
||||
from src.players.player import DefaultPlayer
|
||||
from src.players.models import PlayerDB
|
||||
|
||||
# commands
|
||||
|
|
@ -119,7 +119,7 @@ from src.comms.models import Msg, ChannelDB
|
|||
from src.comms.comms import Channel
|
||||
|
||||
# objects
|
||||
from src.objects.objects import Object, Character, Room, Exit
|
||||
from src.objects.objects import DefaultObject, DefaultCharacter, DefaultRoom, DefaultExit
|
||||
|
||||
# utils
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue