diff --git a/physionet-django/events/migrations/0009_alter_event_options.py b/physionet-django/events/migrations/0009_alter_event_options.py index 64dd00e32f..cc51607733 100644 --- a/physionet-django/events/migrations/0009_alter_event_options.py +++ b/physionet-django/events/migrations/0009_alter_event_options.py @@ -12,6 +12,8 @@ class Migration(migrations.Migration): operations = [ migrations.AlterModelOptions( name='event', - options={'permissions': [('view_all_events', 'Can view all events in the console'), ('invite_event_host', 'Can grant event host status to a user'), ('view_event_menu', 'Can view event menu in the navbar')]}, + options={'permissions': [('view_all_events', 'Can view all events in the console'), + ('invite_event_host', 'Can grant event host status to a user'), + ('view_event_menu', 'Can view event menu in the navbar')]}, ), ]