chore: formatting all python files using black formatter (#3366)

This commit is contained in:
sriram veeraghanta 2024-01-13 19:05:06 +05:30
parent 4b0d48b290
commit 11f84a986c
235 changed files with 12967 additions and 4168 deletions

View file

@ -4,25 +4,24 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('db', '0014_alter_workspacememberinvite_unique_together'),
("db", "0014_alter_workspacememberinvite_unique_together"),
]
operations = [
migrations.RenameField(
model_name='issuecomment',
old_name='comment',
new_name='comment_stripped',
model_name="issuecomment",
old_name="comment",
new_name="comment_stripped",
),
migrations.AddField(
model_name='issuecomment',
name='comment_html',
model_name="issuecomment",
name="comment_html",
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='issuecomment',
name='comment_json',
model_name="issuecomment",
name="comment_json",
field=models.JSONField(blank=True, null=True),
),
]