13 lines
198 B
Python
13 lines
198 B
Python
|
|
from .auto import Auto
|
|
from .tuner import Tuner
|
|
|
|
|
|
class fHDHR_WATCH():
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
self.auto = Auto(fhdhr)
|
|
self.tuner = Tuner(fhdhr)
|