From 8fdedc7f9c3c74fee177b1be2647b94b9c5895dc Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 26 Jan 2022 11:45:12 +0100 Subject: [PATCH] Fix pre-commit --- LICENSE | 1 - README.md | 2 +- src/redirect/migrations/0002_alter_redirect_target_url.py | 6 +++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index 1e9858b..fdddb29 100644 --- a/LICENSE +++ b/LICENSE @@ -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 - diff --git a/README.md b/README.md index 9f0f8c2..60c394e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Reuse -If you do reuse my work, please consider linking back to this repository 🙂 \ No newline at end of file +If you do reuse my work, please consider linking back to this repository 🙂 diff --git a/src/redirect/migrations/0002_alter_redirect_target_url.py b/src/redirect/migrations/0002_alter_redirect_target_url.py index 5f6cfc7..3b9e0d0 100644 --- a/src/redirect/migrations/0002_alter_redirect_target_url.py +++ b/src/redirect/migrations/0002_alter_redirect_target_url.py @@ -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), ), ]