mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-08 05:39:13 +00:00
Set operations to typed empty list in migration file
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
from django.db import migrations
|
from django.db import migrations
|
||||||
|
|
||||||
|
from typing import List, Any
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [
|
dependencies = [
|
||||||
@@ -9,4 +11,4 @@ class Migration(migrations.Migration):
|
|||||||
("database", "0010_rename_embeddings_entry_and_more"),
|
("database", "0010_rename_embeddings_entry_and_more"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = []
|
operations = List[Any] = []
|
||||||
|
|||||||
Reference in New Issue
Block a user