"""Requests to ows-abacus-account.""" import requests from abacus_contract.utils.requests import get SERVICE = 'ows-abacus-account' def get_account(account_id: int) -> requests.Response: """Get account.""" path = f'/account/{account_id}' response = get(SERVICE, path) return response