Skip to content

Commit c765276

Browse files
committed
Remove Python <3.7 crutch
1 parent b47ecc7 commit c765276

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/procrunner/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,8 +383,6 @@ def run(
383383
command = tuple(_path_resolve(part) for part in command)
384384
if win32resolve and sys.platform == "win32":
385385
command = _windows_resolve(command)
386-
if working_directory and sys.version_info < (3, 7):
387-
working_directory = os.fspath(working_directory)
388386

389387
p = subprocess.Popen(
390388
command,

0 commit comments

Comments
 (0)