Skip to content

Commit 6fc188c

Browse files
committed
Fixed line to long
1 parent efbdc13 commit 6fc188c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/sagemaker/_studio.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,9 @@ def _find_config(working_dir=None):
6565
wd = Path(working_dir) if working_dir else Path.cwd()
6666

6767
path = None
68-
69-
root = Path(
70-
wd.anchor
71-
) # Properly get the root of the current working directory for both Windows and Unix-like systems
68+
69+
# Get the root of the current working directory for both Windows and Unix-like systems
70+
root = Path(wd.anchor)
7271
while path is None and wd != root:
7372
candidate = wd / STUDIO_PROJECT_CONFIG
7473
if Path.exists(candidate):

0 commit comments

Comments
 (0)