Commit 924570e4 authored by cclauss's avatar cclauss Committed by Donne Martin
Browse files

Add newlines - PEP8 style (#173)

parent 17530912
...@@ -35,4 +35,4 @@ class HashTable(object): ...@@ -35,4 +35,4 @@ class HashTable(object):
if item.key == key: if item.key == key:
del self.table[hash_index][index] del self.table[hash_index][index]
return return
raise KeyError('Key not found') raise KeyError('Key not found')
\ No newline at end of file
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
class QueryApi(object): class QueryApi(object):
def __init__(self, memory_cache, reverse_index_cluster): def __init__(self, memory_cache, reverse_index_cluster):
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
class PagesDataStore(object): class PagesDataStore(object):
def __init__(self, db): def __init__(self, db):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment