mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 20:09:25 +00:00
All: Apply Black coding rules
This commit is contained in:
@ -9,13 +9,17 @@ class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('forum', '0004_auto_20170531_1949'),
|
||||
("forum", "0004_auto_20170531_1949"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='forumtopic',
|
||||
name='subscribed_users',
|
||||
field=models.ManyToManyField(verbose_name='subscribed users', related_name='favorite_topics', to=settings.AUTH_USER_MODEL),
|
||||
),
|
||||
model_name="forumtopic",
|
||||
name="subscribed_users",
|
||||
field=models.ManyToManyField(
|
||||
verbose_name="subscribed users",
|
||||
related_name="favorite_topics",
|
||||
to=settings.AUTH_USER_MODEL,
|
||||
),
|
||||
)
|
||||
]
|
||||
|
Reference in New Issue
Block a user