Skip to content

Commit

Permalink
14
Browse files Browse the repository at this point in the history
Signed-off-by: Praneeth Bedapudi <praneeth@bpraneeth.com>
  • Loading branch information
bedapudi6788 committed Nov 6, 2023
1 parent 9bbe547 commit 29542df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions liteindex/defined_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(
example=None,
import_from_file=None,
file_type=None,
db_path=":memory:",
db_path=None,
ram_cache_mb=64,
):
if name.startswith("__"):
Expand Down Expand Up @@ -74,7 +74,7 @@ def __init__(
self.schema = schema
self.hashed_key_schema = {}
self.meta_table_name = f"__{name}_meta"
self.db_path = db_path
self.db_path = ":memory:" if db_path is None else db_path
self.key_hash_to_original_key = {}
self.original_key_to_key_hash = {}
self.column_names = []
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
EMAIL = "praneeth@bpraneeth.com"
AUTHOR = "BEDAPUDI PRANEETH"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.0.2.dev12"
VERSION = "0.0.2.dev14"

# What packages are required for this module to be executed?
REQUIRED = [
"zstandard"
]

# What packages are optional?
Expand Down

0 comments on commit 29542df

Please sign in to comment.