#!/usr/bin/python3 -u
"""
Description: Run UPS module until an exception is raised
Author: thnikk
"""
from modules_waybar import ups
import time


while True:
    ups.module({})
    time.sleep(1)
