Remove unused variable.

This commit is contained in:
Dain Nilsson 2018-12-20 13:55:05 +01:00
parent 65d8f8dfe8
commit 273ccdab75
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
sha: v1.2.3
rev: v2.0.0
hooks:
- id: flake8
- id: double-quote-string-fixer

View File

@ -301,5 +301,5 @@ class U2FFido2Server(Fido2Server):
def authenticate_complete(self, *args, **kwargs):
try:
super(U2FFido2Server, self).authenticate_complete(*args, **kwargs)
except ValueError as e:
except ValueError:
self._app_id_server.authenticate_complete(*args, **kwargs)