mirror of
https://github.com/infinition/Bjorn.git
synced 2025-12-12 07:35:00 +00:00
15 lines
196 B
Python
15 lines
196 B
Python
from shared import SharedData
|
|
|
|
b_class = "IDLE"
|
|
b_module = "idle"
|
|
b_status = "IDLE"
|
|
|
|
|
|
class IDLE:
|
|
def __init__(self, shared_data):
|
|
self.shared_data = shared_data
|
|
|
|
|
|
|
|
|