diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-16 11:18:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-16 11:18:45 +0100 |
commit | e1c0970c116fe3700fc80401dc50aeb9d52c45a6 (patch) | |
tree | 10736ce912a4b03d64ab37f75bbb2ffbb4ff2552 /synapse/storage/pusher.py | |
parent | Go back to storing JSON in TEXT (diff) | |
download | synapse-e1c0970c116fe3700fc80401dc50aeb9d52c45a6.tar.xz |
PEP8
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r-- | synapse/storage/pusher.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py index 5c1c3d32e6..a44bccdca6 100644 --- a/synapse/storage/pusher.py +++ b/synapse/storage/pusher.py @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import collections - from ._base import SQLBaseStore, Table from twisted.internet import defer @@ -167,4 +165,3 @@ class PusherStore(SQLBaseStore): class PushersTable(Table): table_name = "pushers" - |