mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
formatting
This commit is contained in:
parent
09927745d9
commit
a3af5d8c6a
@ -64,7 +64,9 @@ class FSM(DirectObject):
|
|||||||
# Jesse decided that simpler was better with the __str__ function
|
# Jesse decided that simpler was better with the __str__ function
|
||||||
def __str_not__(self):
|
def __str_not__(self):
|
||||||
"""__str__(self)"""
|
"""__str__(self)"""
|
||||||
return "FSM: name = %s \n states = %s \n initial = %s \n final = %s \n current = %s" % (self.__name, self.__states, self.__initialState, self.__finalState, self.__currentState)
|
return "FSM: name = %s \n states = %s \n initial = %s \n final = %s \n current = %s" \
|
||||||
|
% (self.__name, self.__states, self.__initialState,
|
||||||
|
self.__finalState, self.__currentState)
|
||||||
|
|
||||||
|
|
||||||
# setters and getters
|
# setters and getters
|
||||||
|
Loading…
x
Reference in New Issue
Block a user