Format code with black. Add makefile to run fmt/tests

This commit is contained in:
Griatch 2019-09-28 18:18:11 +02:00
parent d00bce9288
commit c2c7fa311a
299 changed files with 19037 additions and 11611 deletions

View file

@ -7,30 +7,103 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('typeclasses', '0002_auto_20150109_0913'),
]
dependencies = [("typeclasses", "0002_auto_20150109_0913")]
operations = [
migrations.CreateModel(
name='ObjectDB',
name="ObjectDB",
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('db_key', models.CharField(max_length=255, verbose_name='key', db_index=True)),
('db_typeclass_path', models.CharField(help_text="this defines what 'type' of entity this is. This variable holds a Python path to a module with a valid Evennia Typeclass.", max_length=255, null=True, verbose_name='typeclass')),
('db_date_created', models.DateTimeField(auto_now_add=True, verbose_name='creation date')),
('db_lock_storage', models.TextField(help_text="locks limit access to an entity. A lock is defined as a 'lock string' on the form 'type:lockfunctions', defining what functionality is locked and how to determine access. Not defining a lock means no access is granted.", verbose_name='locks', blank=True)),
('db_sessid', models.CommaSeparatedIntegerField(help_text='csv list of session ids of connected Account, if any.', max_length=32, null=True, verbose_name='session id')),
('db_cmdset_storage', models.CharField(help_text='optional python path to a cmdset class.', max_length=255, null=True, verbose_name='cmdset', blank=True)),
('db_attributes', models.ManyToManyField(help_text='attributes on this object. An attribute can hold any pickle-able python object (see docs for special cases).', to='typeclasses.Attribute', null=True)),
('db_destination', models.ForeignKey(related_name='destinations_set', on_delete=django.db.models.deletion.SET_NULL, blank=True, to='objects.ObjectDB', help_text='a destination, used only by exit objects.', null=True, verbose_name='destination')),
('db_home', models.ForeignKey(related_name='homes_set', on_delete=django.db.models.deletion.SET_NULL, verbose_name='home location', blank=True, to='objects.ObjectDB', null=True)),
('db_location', models.ForeignKey(related_name='locations_set', on_delete=django.db.models.deletion.SET_NULL, verbose_name='game location', blank=True, to='objects.ObjectDB', null=True)),
(
"id",
models.AutoField(
verbose_name="ID", serialize=False, auto_created=True, primary_key=True
),
),
("db_key", models.CharField(max_length=255, verbose_name="key", db_index=True)),
(
"db_typeclass_path",
models.CharField(
help_text="this defines what 'type' of entity this is. This variable holds a Python path to a module with a valid Evennia Typeclass.",
max_length=255,
null=True,
verbose_name="typeclass",
),
),
(
"db_date_created",
models.DateTimeField(auto_now_add=True, verbose_name="creation date"),
),
(
"db_lock_storage",
models.TextField(
help_text="locks limit access to an entity. A lock is defined as a 'lock string' on the form 'type:lockfunctions', defining what functionality is locked and how to determine access. Not defining a lock means no access is granted.",
verbose_name="locks",
blank=True,
),
),
(
"db_sessid",
models.CommaSeparatedIntegerField(
help_text="csv list of session ids of connected Account, if any.",
max_length=32,
null=True,
verbose_name="session id",
),
),
(
"db_cmdset_storage",
models.CharField(
help_text="optional python path to a cmdset class.",
max_length=255,
null=True,
verbose_name="cmdset",
blank=True,
),
),
(
"db_attributes",
models.ManyToManyField(
help_text="attributes on this object. An attribute can hold any pickle-able python object (see docs for special cases).",
to="typeclasses.Attribute",
null=True,
),
),
(
"db_destination",
models.ForeignKey(
related_name="destinations_set",
on_delete=django.db.models.deletion.SET_NULL,
blank=True,
to="objects.ObjectDB",
help_text="a destination, used only by exit objects.",
null=True,
verbose_name="destination",
),
),
(
"db_home",
models.ForeignKey(
related_name="homes_set",
on_delete=django.db.models.deletion.SET_NULL,
verbose_name="home location",
blank=True,
to="objects.ObjectDB",
null=True,
),
),
(
"db_location",
models.ForeignKey(
related_name="locations_set",
on_delete=django.db.models.deletion.SET_NULL,
verbose_name="game location",
blank=True,
to="objects.ObjectDB",
null=True,
),
),
],
options={
'verbose_name': 'Object',
'verbose_name_plural': 'Objects',
},
options={"verbose_name": "Object", "verbose_name_plural": "Objects"},
bases=(models.Model,),
),
)
]