Skip to content

Commit 59d8618

Browse files
committed
chore: code review
1 parent ece58d1 commit 59d8618

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ install:
22
uv sync --all-extras
33

44
update:
5-
rm uv.lock
5+
rm -f uv.lock
66
uv sync
77

88
test:

datashield/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def sessions(self) -> dict:
371371
excluded_conns.append(conn.get_name())
372372

373373
# check for session status and wait until all are started
374-
for conn in [c for c in self.conns if c.name not in excluded_conns]:
374+
for conn in [c for c in self.conns if c.get_name() not in excluded_conns]:
375375
try:
376376
if conn.is_session_started():
377377
started_conns.append(conn.get_name())

0 commit comments

Comments
 (0)