Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Jan 12, 2016
1 parent 06a936a commit 309efbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/examples/stopwatch_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run(self):
self.interpreter.execute()

# Queue a call every 100ms on tk's mainloop
self.after(1000, self.run)
self.after(100, self.run)

# Update the widget that contains the list of active states.
self.w_states['text'] = 'active states: ' + ', '.join(self.interpreter.configuration)
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/stopwatch_gui_external.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from sismic.interpreter import Interpreter
from sismic.model import Event

from .stopwatch import Stopwatch
from stopwatch import Stopwatch


# Create a tiny GUI
Expand Down

0 comments on commit 309efbe

Please sign in to comment.