"""
Functions for importing and managing static country information.
"""
-from typing import Dict, Any, Iterable, Tuple, Optional, Container
+from typing import Dict, Any, Iterable, Tuple, Optional, Container, overload
from pathlib import Path
import psycopg2.extras
"""
_COUNTRY_INFO.load(config)
+@overload
+def iterate() -> Iterable[Tuple[str, Dict[str, Any]]]:
+ ...
+
+@overload
+def iterate(prop: str) -> Iterable[Tuple[str, Any]]:
+ ...
def iterate(prop: Optional[str] = None) -> Iterable[Tuple[str, Dict[str, Any]]]:
""" Iterate over country code and properties.