Advertisement
Guest User

Untitled

a guest
May 20th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. /usr/lib/python2.6/site-packages/flask_peewee/auth.py:29: DeprecationWarning: Required is going away in WTForms 3.0, use DataRequired
  2. username = TextField('Username', validators=[validators.Required()])
  3. /usr/lib/python2.6/site-packages/flask_peewee/auth.py:30: DeprecationWarning: Required is going away in WTForms 3.0, use DataRequired
  4. password = PasswordField('Password', validators=[validators.Required()])
  5. /var/qpid/automation-modeling/src/auth.py:22: DeprecationWarning: Required is going away in WTForms 3.0, use DataRequired
  6. username = StringField('Username', validators=[validators.required()])
  7. /var/qpid/automation-modeling/src/auth.py:23: DeprecationWarning: Required is going away in WTForms 3.0, use DataRequired
  8. password = PasswordField('Password', validators=[validators.required()])
  9. Traceback (most recent call last):
  10. File "/var/qpid/automation-modeling/src/web.py", line 10, in <module>
  11. from views.modeling import *
  12. File "/var/qpid/automation-modeling/src/views/modeling.py", line 147
  13. filtered_confidences = {fpr:confidence for fpr, confidence in confidences['fpr_confidences'].iteritems() if prediction['probability'] >= confidence}
  14. ^
  15. SyntaxError: invalid syntax
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement