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