Skip to content

Commit

Permalink
Merge pull request #86 from MtkN1/develop
Browse files Browse the repository at this point in the history
🛠️v0.7.1リリース(hot-fix)

✅ DataStoreの内部メソッド _clear が正しく動作しない不具合を修正
  • Loading branch information
MtkN1 committed Sep 28, 2021
2 parents 88a7405 + 6afee90 commit f90a05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pybotters/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def _delete(self, data: List[Item]) -> None:
def _clear(self) -> None:
self._data.clear()
self._index.clear()
self._set()
self._set([])

def _sweep_with_key(self) -> None:
if len(self._data) > self._MAXLEN:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pybotters"
version = "0.7.0"
version = "0.7.1"
description = "An advanced api client for python botters."
license = "MIT"
authors = ["MtkN1 <51289448+MtkN1@users.noreply.github.com>"]
Expand Down

0 comments on commit f90a05b

Please sign in to comment.