def read_os_name()

in dcrpm/util.py [0:0]


def read_os_name():
    # type: () -> str
    """
    Call platform.system() and caches the value
    """
    import platform

    return platform.system()