[Pybrainsim-activity] SF.net SVN: pybrainsim:[10] trunk/src/Stimulus.py
Status: Planning
Brought to you by:
rgoj
|
From: <rg...@us...> - 2009-07-24 13:11:01
|
Revision: 10
http://pybrainsim.svn.sourceforge.net/pybrainsim/?rev=10&view=rev
Author: rgoj
Date: 2009-07-24 13:10:51 +0000 (Fri, 24 Jul 2009)
Log Message:
-----------
* Two small mistakes in Stimulus.py
Modified Paths:
--------------
trunk/src/Stimulus.py
Modified: trunk/src/Stimulus.py
===================================================================
--- trunk/src/Stimulus.py 2009-07-24 13:10:09 UTC (rev 9)
+++ trunk/src/Stimulus.py 2009-07-24 13:10:51 UTC (rev 10)
@@ -24,8 +24,10 @@
Currently the Stimulus class only keeps a counter to remember the number of times it was called.
"""
+from Generator import Generator
+
class Stimulus(Generator):
- def __init__(self):
+ def __init__(self):
self.output = 0
self.counter = 0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|