mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-01-09 14:27:10 +00:00
13 lines
239 B
Python
13 lines
239 B
Python
|
"""Package for experimental enabled."""
|
||
|
|
||
|
|
||
|
class Enabled:
|
||
|
"""Class for enabling experimental functionality."""
|
||
|
|
||
|
value = False
|
||
|
|
||
|
@classmethod
|
||
|
def set(cls, value):
|
||
|
"""Set the enabled value."""
|
||
|
cls.value = value
|