Merge pull request #560 from MikeTheWatchGuy/Dev-latest

Added code for version 2.7
This commit is contained in:
MikeTheWatchGuy 2018-10-24 19:46:06 -04:00 committed by GitHub
commit 7a02e3e25c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
import PySimpleGUI as sg #!/usr/bin/env python
import sys
if sys.version_info[0] >= 3:
import PySimpleGUI as sg
else:
import PySimpleGUI27 as sg
from gtts import gTTS from gtts import gTTS
from pygame import mixer from pygame import mixer
import time import time