From 4e3ad14c74259cf5303e453aa70d1779e01ab0d4 Mon Sep 17 00:00:00 2001 From: Jonas Grimfelt Date: Wed, 31 Mar 2021 13:58:09 -0400 Subject: [PATCH] syntax: line break for readability --- rootpath/detect.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rootpath/detect.py b/rootpath/detect.py index 4621611..e241451 100644 --- a/rootpath/detect.py +++ b/rootpath/detect.py @@ -84,6 +84,7 @@ def find_root_path(current_path, pattern = None): return None system_root = sys.executable + while os.path.split(system_root)[1]: system_root = os.path.split(system_root)[0]