mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
8 lines
328 B
Python
8 lines
328 B
Python
from typing import Any, List, Optional
|
|
|
|
from django.db.migrations.operations.base import Operation
|
|
|
|
class MigrationOptimizer:
|
|
def optimize(self, operations: List[Operation], app_label: str = ...) -> List[Operation]: ...
|
|
def optimize_inner(self, operations: List[Operation], app_label: str = ...) -> List[Operation]: ...
|