Source code for lmflow.models.interfaces.tunable #!/usr/bin/env python # coding=utf-8 """Tunable class """ from abc import ABC [docs] class Tunable(ABC): pass