Skip to content

Commit 490e77c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1763b72 commit 490e77c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sphinx_js/analyzer_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
def program_name_on_this_platform(program: str) -> str:
1515
"""Return the name of the executable file on the current platform, given a
1616
command name with no extension."""
17-
17+
1818
if os.access(program, os.X_OK):
1919
return program
20-
20+
2121
path = shutil.which(program)
2222
if path and os.access(path, os.X_OK):
2323
return path

0 commit comments

Comments
 (0)