Skip to content

Commit

Permalink
fixed space
Browse files Browse the repository at this point in the history
  • Loading branch information
colemanliyah committed Jun 4, 2021
1 parent 27e9887 commit 2a61379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jax/experimental/compilation_cache/file_system_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ def put(self, key: str, value: bytes):
"""Adds new cache entry, possibly evicting older entries."""
if not key:
raise ValueError("key cannot be empty")
#TODO(colemanliyah):implement eviction
#TODO(colemanliyah):implement eviction
with open(os.path.join(self._path, key), "wb") as file:
file.write(value)

0 comments on commit 2a61379

Please sign in to comment.