Skip to content

Commit

Permalink
fix: [lib] reset parent_meta
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Dec 3, 2021
1 parent b579f15 commit 6e05f1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion hashlookup/hashlookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
__author__ = "Alexandre Dulaunoy"
__copyright__ = "Copyright 2021, Alexandre Dulaunoy"
__license__ = "AGPL License"
__version__ = "1.2"
__version__ = "1.3"

import redis
import time
Expand Down Expand Up @@ -72,6 +72,7 @@ def cleanup(self):
self.parent = []
self.children = []
self.record = {}
self.parent_meta = {}
if self.source is not None:
self.record["source"] = self.source

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.2', # Required
version='1.3', # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down

0 comments on commit 6e05f1a

Please sign in to comment.