Skip to content

Commit 55cb8a1

Browse files
committed
Fix: pytype.single -> pytype.main.
Fixes #1583. PiperOrigin-RevId: 606449169
1 parent cc5b862 commit 55cb8a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pytype/tools/analyze_project/pytype_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _get_executable(binary, module=None):
5252
return [sys.executable, '-m', module or binary]
5353
else:
5454
return [binary]
55-
PYTYPE_SINGLE = _get_executable('pytype-single', 'pytype.single')
55+
PYTYPE_SINGLE = _get_executable('pytype-single', 'pytype.main')
5656

5757

5858
def resolved_file_to_module(f):

0 commit comments

Comments
 (0)