From 023a64dc938a7f879594900dbc6320991f9f2ac4 Mon Sep 17 00:00:00 2001 From: dieantu Date: Mon, 29 Aug 2022 08:49:05 +0200 Subject: [PATCH] Update 0.05 ms comment 5 milliseconds is 0.005 seconds as said in #102. Thankyou! --- usbkill/usbkill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usbkill/usbkill.py b/usbkill/usbkill.py index 1b85d26..0a69991 100644 --- a/usbkill/usbkill.py +++ b/usbkill/usbkill.py @@ -137,7 +137,7 @@ def kill_computer(settings): # Sync the filesystem to save recent changes os.system("sync") else: - # If syncing is risky because it might take too long, then sleep for 5ms. + # If syncing is risky because it might take too long, then sleep for 50ms. # This will still allow for syncing in most cases. sleep(0.05)