Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and jackton1 committed Jul 5, 2021
1 parent eb59eac commit 869bb8c
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions migrations/0002_alter_testmodel_active.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Generated by Django 3.2.4 on 2021-07-03 05:41

import django
from django.db import migrations, models


Expand All @@ -10,9 +10,21 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterField(
model_name="testmodel",
name="active",
field=models.BooleanField(default=True),
(
(
migrations.AlterField(
model_name="testmodel",
name="active",
field=models.NullBooleanField(default=True),
)
)
if django.VERSION < (2, 1)
else (
migrations.AlterField(
model_name="testmodel",
name="active",
field=models.BooleanField(default=True),
)
)
),
]

0 comments on commit 869bb8c

Please sign in to comment.