Skip to content

Commit 026c61f

Browse files
committed
remove dev comments
1 parent f680409 commit 026c61f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

jupyter_drives/manager.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ async def mount_drive(self, drive_name, provider):
312312
try:
313313
if provider == 's3':
314314
if drive_name in self._external_drives and self._external_drives[drive_name]["is_public"] is False:
315-
print('FOUND DRIVE IN EXTERNAL TO MOUNT: ', self._external_drives[drive_name]["location"])
316315
region = self._external_drives[drive_name]["location"]
317316
else:
318317
region = await self._get_drive_location(drive_name)
@@ -728,9 +727,7 @@ async def add_external_drive(self, drive_name, is_public, region='us-east-1'):
728727
"url": drive_name,
729728
"location": region
730729
};
731-
print('ADDED DRIVE: ', drive)
732730
self._external_drives[drive_name] = drive;
733-
print('NEW EXTERNAL DRIVEs: ', self._external_drives)
734731
except Exception as e:
735732
raise tornado.web.HTTPError(
736733
status_code= httpx.codes.BAD_REQUEST,

0 commit comments

Comments
 (0)