mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
python: Normalize quotes with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
11741543da
commit
6e4c3e41dc
@@ -6,17 +6,17 @@ from django.db import migrations, models
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('zerver', '0189_userprofile_add_some_emojisets'),
|
||||
("zerver", "0189_userprofile_add_some_emojisets"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='pushdevicetoken',
|
||||
name='token',
|
||||
model_name="pushdevicetoken",
|
||||
name="token",
|
||||
field=models.CharField(db_index=True, max_length=4096),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='pushdevicetoken',
|
||||
unique_together={('user', 'kind', 'token')},
|
||||
name="pushdevicetoken",
|
||||
unique_together={("user", "kind", "token")},
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user