Skip to content

Commit

Permalink
Make Cache attached
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin C Presley committed Dec 25, 2021
1 parent b817324 commit 0d27b0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# @Pip-Library: https://pypi.org/project/ndn-storage

# Version of Storage according to pip
__version__ = "0.1.7"
__version__ = "0.1.8"
2 changes: 1 addition & 1 deletion src/ndn/storage/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class Storage(ABC):
def __init__(self) -> None:
cache:NameTrie = NameTrie()
self.cache:NameTrie = NameTrie()
@staticmethod
def _time_ms() -> int:
return int(get_time() * 1000)
Expand Down

0 comments on commit 0d27b0c

Please # to comment.