Skip to content

Commit

Permalink
pyflakes fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tredman committed Aug 6, 2019
1 parent c5c8e50 commit 9cd0660
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion beeline/middleware/bottle/test_bottle.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from mock import Mock, patch, call, ANY
from mock import Mock, patch, ANY

from beeline.middleware.bottle import HoneyWSGIMiddleware

Expand Down
2 changes: 1 addition & 1 deletion beeline/middleware/django/test_django.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from mock import Mock, patch, call, ANY
from mock import Mock, patch

from beeline.middleware.django import HoneyMiddlewareBase

Expand Down
2 changes: 1 addition & 1 deletion beeline/middleware/flask/test_flask.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from mock import Mock, patch, call, ANY
from mock import Mock, patch, ANY

from beeline.middleware.flask import HoneyWSGIMiddleware

Expand Down
2 changes: 1 addition & 1 deletion beeline/middleware/werkzeug/test_werkzeug.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from mock import Mock, patch, call, ANY
from mock import Mock, patch, ANY

from beeline.middleware.werkzeug import HoneyWSGIMiddleware

Expand Down

0 comments on commit 9cd0660

Please sign in to comment.