diff --git a/eel/edge.py b/eel/edge.py index cef818aa..d7813715 100644 --- a/eel/edge.py +++ b/eel/edge.py @@ -2,16 +2,16 @@ import subprocess as sps import sys -name = 'Edge' +name = "Edge" def run(_path, options, start_urls): - cmd = 'start microsoft-edge:{}'.format(start_urls[0]) - sps.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr, stdin=sps.PIPE, shell=True) + cmd = "start microsoft-edge:{}".format(start_urls[0]) + sps.Popen(cmd, stdout=sps.PIPE, stderr=sps.PIPE, stdin=sps.PIPE, shell=True) def find_path(): - if platform.system() == 'Windows': + if platform.system() == "Windows": return True return False