Skip to content

Commit

Permalink
Format file respecting black rules
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiobotaro committed Oct 20, 2021
1 parent 193adf7 commit 0659962
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion shared_memory_dict/caches/aiocache.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ async def _multi_set(
return True

async def _add(
self, key: str, value: Any, ttl: Optional[Number] = None, _conn=None,
self,
key: str,
value: Any,
ttl: Optional[Number] = None,
_conn=None,
):
if key in self._cache:
raise ValueError(
Expand Down

0 comments on commit 0659962

Please sign in to comment.