From 9a638e7ac1d8965d6fbddce2a6afb3f75209f73a Mon Sep 17 00:00:00 2001 From: Antonio Caceres <antonio@antonio-caceres.com> Date: Fri, 11 Oct 2024 16:54:39 -0700 Subject: [PATCH] Add instructions print statement to transfer.py. --- transfer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/transfer.py b/transfer.py index 98b4888..6f22821 100644 --- a/transfer.py +++ b/transfer.py @@ -30,6 +30,7 @@ if 'TRINKEY' in name: urllib.request.urlretrieve( "https://downloads.circuitpython.org/bin/adafruit_proxlight_trinkey_m0/en_US/adafruit-circuitpython-adafruit_proxlight_trinkey_m0-en_US-9.1.4.uf2", os.path.join( disk, 'trinkey.uf2')) + print("The drive will now eject. You can quit any keyboard popups that appear. Run the transfer.py file again for it to be bootable.") else: shutil.rmtree(os.path.join(disk, 'lib'), True) shutil.rmtree(os.path.join(disk, 'src'), True) -- GitLab