Skip to content

Commit bf8ce34

Browse files
authored
fix: remove print() in core_sessions.py (#1000)
Closes #999.
1 parent 6ca0be2 commit bf8ce34

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

components/renku_data_services/notebooks/core_sessions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,6 @@ def _make_patch_spec_list(existing: Sequence[_T], updated: Sequence[_T]) -> list
10591059
patch_list = list(existing)
10601060
upsert_list = list(updated)
10611061
for upsert_item in upsert_list:
1062-
print(f"patch_list before: {patch_list}")
10631062
# Find out if the upsert_item needs to be added or updated
10641063
# found = next(enumerate(filter(lambda item: item.name == upsert_item.name, patch_list)), None)
10651064
found = next(filter(lambda t: t[1].name == upsert_item.name, enumerate(patch_list)), None)

0 commit comments

Comments
 (0)