Skip to content

Commit

Permalink
Pop prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Semmler committed Jan 29, 2024
1 parent 81e8cb4 commit aff7290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/re_classwise_shapley/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class PrefixedMemcachedCacheBackend(MemcachedCacheBackend):
def __init__(self, *args, **kwargs):
self._prefix = kwargs["prefix"]
self._prefix = kwargs.pop("prefix")
super().__init__(*args, **kwargs)

def get(self, key: str) -> Optional[Any]:
Expand Down

0 comments on commit aff7290

Please sign in to comment.