Skip to content

Commit

Permalink
Add newlines - PEP8 style (donnemartin#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and donnemartin committed Jul 19, 2018
1 parent 4cc5ff4 commit 65685dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/object_oriented_design/hash_table/hash_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ def remove(self, key):
if item.key == key:
del self.table[hash_index][index]
return
raise KeyError('Key not found')
raise KeyError('Key not found')
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-


class QueryApi(object):

def __init__(self, memory_cache, reverse_index_cluster):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-


class PagesDataStore(object):

def __init__(self, db):
Expand Down

0 comments on commit 65685dc

Please sign in to comment.