mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
10 lines
178 B
Python
10 lines
178 B
Python
from typing import Any, Optional
|
|
|
|
|
|
def file_move_safe(
|
|
old_file_name: str,
|
|
new_file_name: str,
|
|
chunk_size: int = ...,
|
|
allow_overwrite: bool = ...,
|
|
) -> None: ...
|