Fix pre-commit
This commit is contained in:
parent
e932f764e2
commit
8fdedc7f9c
3 changed files with 4 additions and 5 deletions
1
LICENSE
1
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 <https://unlicense.org>
|
||||
|
||||
|
|
|
@ -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),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue