Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Sullivan committed Feb 7, 2024
1 parent f0d7249 commit 09a102d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elastic_datashader/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_index_hash(idx: str) -> str:
*:my-data-* listed as
mysite-1:my-data-*,mysite-2:my-data-*,mysite-3:my-data-*,mysite-4:my-data-*,mysite-5:my-data-*
'''
idx_hash = index_hash_map.get(idx,None)
idx_hash = index_hash_map.get(idx, None)
if idx_hash is not None:
return idx_hash
idx_hash = sha256()
Expand Down

0 comments on commit 09a102d

Please sign in to comment.