Skip to content

Commit 10e6d76

Browse files
committed
chore: remove prints
1 parent bd0b405 commit 10e6d76

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

utils/jupyterlite.py

-5
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,8 @@ def get_data_python(key: str, globals_dict: Optional[Dict] = None):
258258
log(f"{index}: {name}")
259259
index += 1
260260
data_from_host.append(data)
261-
print("added material")
262261
if globals_dict is not None:
263262
globals_dict[key] = data_from_host
264-
print("globals dict is not None")
265-
else:
266-
print("globals dict is None")
267263
return data_from_host
268264
except FileNotFoundError:
269265
print("No data found in the 'uploads' folder.")
@@ -359,7 +355,6 @@ def load_materials_from_folder(folder_path: Optional[str] = None, verbose: bool
359355
data = json.load(file)
360356
name = os.path.splitext(filename)[0]
361357
log(f"{index}: {name}", SeverityLevelEnum.INFO, force_verbose=verbose)
362-
print("-----")
363358
index += 1
364359
data_from_host.append(data)
365360
except FileNotFoundError:

0 commit comments

Comments
 (0)