hendrydong's picture
Upload 32 files
e4f3acf
raw
history blame
110 Bytes
#!/usr/bin/env python
# coding=utf-8
"""Tunable class
"""
from abc import ABC
class Tunable(ABC):
pass