Skip to content

Commit

Permalink
Merge pull request #97 from aidh-ms/issue/91-rrt-probe-error
Browse files Browse the repository at this point in the history
  • Loading branch information
aegis301 authored Dec 5, 2023
2 parents c3b5083 + b4bf51c commit 6e736ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyAKI/kdigo.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ def process_stay(self, stay_id: str) -> pd.DataFrame:
logger.debug("Processing stay with id: %s", stay_id)

datasets: list[Dataset] = [
Dataset(dtype, data.loc[stay_id]) for dtype, data in self._data # type: ignore
Dataset(dtype, data.loc[stay_id]) # type: ignore
for dtype, data in self._data
if stay_id in data.index
]

for probe in self._probes:
Expand Down

0 comments on commit 6e736ab

Please sign in to comment.