comparison src/parpg/components/lockable.py @ 43:1cc037593517

Fixed bug in components
author KarstenBock@gmx.net
date Thu, 01 Sep 2011 23:26:02 +0200
parents 5ac50245e42c
children 3024ded5ae61
comparison
equal deleted inserted replaced
42:9a97f53fc550 43:1cc037593517
16 class Lockable(Component): 16 class Lockable(Component):
17 """Component that stores the data of a lock""" 17 """Component that stores the data of a lock"""
18 18
19 def __init__(self): 19 def __init__(self):
20 """Constructor""" 20 """Constructor"""
21 Component.__init__(locked=bool) 21 Component.__init__(self, locked=bool)