Files
zulip/confirmation/migrations/0003_emailchangeconfirmation.py
Anders Kaseorg 7a34e9a3fd black: Reformat with Black 23.
Black 23 enforces some slightly more specific rules about empty line
counts and redundant parenthesis removal, but the result is still
compatible with Black 22.

(This does not actually upgrade our Python environment to Black 23
yet.)

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit df001db1a9)
2023-04-05 16:07:58 -07:00

20 lines
455 B
Python

# Generated by Django 1.10.4 on 2017-01-17 09:16
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("confirmation", "0002_realmcreationkey"),
]
operations = [
migrations.CreateModel(
name="EmailChangeConfirmation",
fields=[],
options={
"proxy": True,
},
bases=("confirmation.confirmation",),
),
]