From 5f64dc015b2dc0d3ab92fc55ffa759764c652a4b Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 29 Dec 2004 04:07:19 +0000 Subject: [PATCH] formatting --- direct/src/fsm/FSM.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/direct/src/fsm/FSM.py b/direct/src/fsm/FSM.py index 45eca6ac0e..f87ebd6e32 100644 --- a/direct/src/fsm/FSM.py +++ b/direct/src/fsm/FSM.py @@ -1,4 +1,5 @@ -"""The new Finite State Machine module. This replaces the modules +""" +The new Finite State Machine module. This replaces the modules previously called FSM.py (now called ClassicFSM.py). """ @@ -8,7 +9,8 @@ import types import string class FSM(DirectObject.DirectObject): - """A Finite State Machine. This is intended to be the base class + """ + A Finite State Machine. This is intended to be the base class of any number of specific machines, which consist of a collection of states and transitions, and rules to switch between states according to arbitrary input data.