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