def fix_max_empty(iterable):
    """
    Returns max value from iterable if not empty.

    Args:
        iterable (iterable): Input iterable.

    Returns:
        The maximum value in the iterable or None if it's empty.
    """
    return max(iterable) if iterable else None