Import sorting

This commit is contained in:
Abhorrent_Anger 2019-10-29 11:35:33 +02:00 committed by Mārtiņš Kurmis
parent bef4eb7967
commit e2b842fefd
1 changed files with 8 additions and 7 deletions

View File

@ -1,13 +1,14 @@
#!/usr/bin/python3 #!/usr/bin/python3
import notify2 import argparse
from time import sleep
from playsound import playsound
import os import os
from pystray import MenuItem as item import threading
from time import sleep
import notify2
import pystray import pystray
from PIL import Image from PIL import Image
import argparse from playsound import playsound
import threading from pystray import MenuItem as item
NAME = 'Eye Strain Reminder' NAME = 'Eye Strain Reminder'
MESSAGE = 'Friendly reminder to observe the 20-20-20 rule' MESSAGE = 'Friendly reminder to observe the 20-20-20 rule'
@ -115,4 +116,4 @@ def main():
notify_thread.join() notify_thread.join()
if __name__ == '__main__': if __name__ == '__main__':
main() main()