mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-18 09:29:42 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
431 B
431 B
In [ ]:
from typing import Optional, List
def initialize_list(list: Optional[List[int]] = None):
if list is None:
list = [None for _ in range(4)]