Skip to content

Commit bf42f6c

Browse files
authored
Reload echem data by default, unless disabled (#840)
* Reload echem data by default, unless disabled * Bump navani to 0.1.7
1 parent ffd3647 commit bf42f6c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pydatalab/Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ flask-compress = "*"
2727
pillow = "*"
2828
tiktoken = "~= 0.7, < 0.8"
2929
galvani = "~= 0.4"
30-
navani = {git = "git+https://github.com/the-grey-group/[email protected].6"}
30+
navani = {git = "git+https://github.com/the-grey-group/[email protected].7"}
3131
NewareNDA = ">= 2024"
3232
python-dateutil = "*"
3333
pybaselines = "*"

pydatalab/Pipfile.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pydatalab/pydatalab/apps/echem/blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _get_characteristic_mass_g(self):
6262
return characteristic_mass_mg / 1000.0
6363
return None
6464

65-
def _load(self, file_id: Union[str, ObjectId], reload: bool = False):
65+
def _load(self, file_id: Union[str, ObjectId], reload: bool = True):
6666
"""Loads the echem data using navani, summarises it, then caches the results
6767
to disk with suffixed names.
6868

0 commit comments

Comments
 (0)