Empty List¶
Requirements:
creating a list
returning a value
Please read the docstring in the starter code.
Starter Code¶
from typing import List
def get_empty_list() -> List:
"""Returns an empty list"""
return None
Tests¶
from main import get_empty_list
def test_get_empty_list():
assert get_empty_list() == []