I want to override transferOwnership from Ownable However, the internal function, _transferOwnership, is not being recognized. I either have to have a way to call this or to alter _transferOwnership directly.
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}