""" Physical Reserves Logic ============= Manages the retrieval of previous physical reserves. """ from ows_accounting.models import reserves def get_physical_reserves(vendor_id, period_id): """Get physical reserves information. Args: vendor_id (int): account id. period_id (int): active period_id Returns: response.Response: Reserves info or error. """ return reserves.get(vendor_id, period_id)