"""Fixture Account Mocking.""" class Object: """Dummy Object Class.""" pass def create_account(vc_id): """Create linked account mock object. Args: vc_id (int): the user id Returns: linked account """ account = Object() account.vc_id = vc_id return account