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. OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org> For more information, please refer to <https://unlicense.org>

View file

@ -1,3 +1,3 @@
# Reuse # 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): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('redirect', '0001_initial'), ("redirect", "0001_initial"),
] ]
operations = [ operations = [
migrations.AlterField( migrations.AlterField(
model_name='redirect', model_name="redirect",
name='target_url', name="target_url",
field=models.URLField(max_length=2000), field=models.URLField(max_length=2000),
), ),
] ]