mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 08:04:21 +00:00
Set operations to typed empty list in migration file
This commit is contained in:
parent
8932fc0c36
commit
a1460a5bf9
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
from django.db import migrations
|
||||
|
||||
from typing import List, Any
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
|
@ -9,4 +11,4 @@ class Migration(migrations.Migration):
|
|||
("database", "0010_rename_embeddings_entry_and_more"),
|
||||
]
|
||||
|
||||
operations = []
|
||||
operations = List[Any] = []
|
||||
|
|
Loading…
Add table
Reference in a new issue