From 73aaeef4aa89191529b950290a17df2cf084158c Mon Sep 17 00:00:00 2001 From: Jayash Tripathy <76092296+JayashTripathy@users.noreply.github.com> Date: Mon, 12 Jan 2026 18:16:00 +0530 Subject: [PATCH] fix: format --- ...0116_profile_notification_view_mode_and_more.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/api/plane/db/migrations/0116_profile_notification_view_mode_and_more.py b/apps/api/plane/db/migrations/0116_profile_notification_view_mode_and_more.py index 0eab9b32eb..beacbcf14a 100644 --- a/apps/api/plane/db/migrations/0116_profile_notification_view_mode_and_more.py +++ b/apps/api/plane/db/migrations/0116_profile_notification_view_mode_and_more.py @@ -11,13 +11,17 @@ class Migration(migrations.Migration): operations = [ migrations.AddField( - model_name='profile', - name='notification_view_mode', - field=models.CharField(choices=[('full', 'Full'), ('compact', 'Compact')], default='full', max_length=255), + model_name="profile", + name="notification_view_mode", + field=models.CharField( + choices=[("full", "Full"), ("compact", "Compact")], + default="full", + max_length=255, + ), ), migrations.AddField( - model_name='user', - name='is_password_reset_required', + model_name="user", + name="is_password_reset_required", field=models.BooleanField(default=False), ), ]