mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 06:21:58 +08:00
13 lines
357 B
Python
13 lines
357 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]: ...
|