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