Skip to content

Commit

Permalink
fix: black wrong config
Browse files Browse the repository at this point in the history
  • Loading branch information
cassiobotaro authored and drgarcia1986 committed Feb 11, 2021
1 parent 32980c6 commit 012095a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ build-backend = "poetry.masonry.api"

[tool.black]
skip-string-normalization = true
line_length = 79
line-length = 79
6 changes: 1 addition & 5 deletions shared_memory_dict/caches/aiocache.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,7 @@ 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 012095a

Please sign in to comment.