Fix pre-commit

This commit is contained in:
Gabriel Augendre 2022-01-26 11:45:12 +01:00
parent e932f764e2
commit 8fdedc7f9c
3 changed files with 4 additions and 5 deletions

View File

@ -22,4 +22,3 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org>

View File

@ -1,3 +1,3 @@
# Reuse
If you do reuse my work, please consider linking back to this repository 🙂
If you do reuse my work, please consider linking back to this repository 🙂

View File

@ -6,13 +6,13 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('redirect', '0001_initial'),
("redirect", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name='redirect',
name='target_url',
model_name="redirect",
name="target_url",
field=models.URLField(max_length=2000),
),
]