8 lines
167 B
Python
8 lines
167 B
Python
from __future__ import annotations
|
|
|
|
from octoprint_bambu_printer.printer.states.a_printer_state import APrinterState
|
|
|
|
|
|
class IdleState(APrinterState):
|
|
pass
|