mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-04 09:02:46 +08:00
9 lines
247 B
Python
9 lines
247 B
Python
from typing import (
|
|
Any,
|
|
Optional,
|
|
)
|
|
|
|
|
|
class MigrationOptimizer:
|
|
def optimize(self, operations: Any, app_label: Optional[str] = ...) -> Any: ...
|
|
def optimize_inner(self, operations: Any, app_label: Optional[str] = ...) -> Any: ... |