feat: better args parsing

This commit is contained in:
2026-03-15 20:03:01 -03:00
parent 4c8cbc821d
commit 6a154429e9
3 changed files with 13 additions and 6 deletions

View File

@@ -3,4 +3,6 @@ from diceplayer.state.state_model import StateModel
class DiceHandler:
@staticmethod
def run(state: StateModel, current_cycle: int) -> StateModel: ...
def run(state: StateModel, current_cycle: int) -> StateModel:
print(f"Running Dice - {current_cycle}")
return state