Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
The examples are being updated to reflect the public API changes in 3df71ab.
  • Loading branch information
dirn committed Jan 28, 2013
1 parent 3df71ab commit c7ec09f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/flask-login/login.py
@@ -1,8 +1,7 @@
from flask import Flask, redirect, render_template, request, url_for
from flask.ext.login import (AnonymousUser, LoginManager, UserMixin,
login_required, login_user, logout_user)
from flask.ext.simon import Simon
from simon import Model
from flask.ext.simon import Simon, Model

app = Flask(__name__)
app.secret_key = 'Keep this value secret'
Expand Down
3 changes: 1 addition & 2 deletions examples/flaskr/flaskr.py
@@ -1,7 +1,6 @@
from flask import (Flask, request, session, redirect, url_for, abort,
render_template, flash)
from flask.ext.simon import Simon
from simon import Model
from flask.ext.simon import Simon, Model


app = Flask(__name__)
Expand Down

0 comments on commit c7ec09f

Please sign in to comment.