You've already forked system-design-primer
mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-06-12 21:47:33 +02:00
Add newlines - PEP8 style (#173)
This commit is contained in:
@ -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')
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
# -*- 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):
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
class PagesDataStore(object):
|
class PagesDataStore(object):
|
||||||
|
|
||||||
def __init__(self, db):
|
def __init__(self, db):
|
||||||
|
Reference in New Issue
Block a user