healthchecks_healthchecks/hc/api/migrations/0017_auto_20151117_1032.py
Pēteris Caune 79da9e9f4f
Fix auto-fixable ruff warnings
(`ruff check --fix`)
2024-11-07 15:15:58 +02:00

26 lines
642 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("api", "0016_auto_20151030_1107")]
operations = [
migrations.AlterField(
model_name="channel",
name="kind",
field=models.CharField(
choices=[
("email", "Email"),
("webhook", "Webhook"),
("hipchat", "HipChat"),
("slack", "Slack"),
("pd", "PagerDuty"),
("po", "Pushover"),
],
max_length=20,
),
)
]