view flax/UI.py @ 1944:b0691e922fa1

fix nginx 502 errors upon service restarts Ignore-this: 9db3c960c3260956fa6bd1b2c77267d3
author drewp@bigasterisk.com
date Wed, 05 Jun 2019 02:04:33 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""