Skip to content

Commit

Permalink
Fix: pytype.single -> pytype.main.
Browse files Browse the repository at this point in the history
Fixes #1583.

PiperOrigin-RevId: 606449169
  • Loading branch information
rchen152 committed Feb 13, 2024
1 parent cc5b862 commit 55cb8a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytype/tools/analyze_project/pytype_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _get_executable(binary, module=None):
return [sys.executable, '-m', module or binary]
else:
return [binary]
PYTYPE_SINGLE = _get_executable('pytype-single', 'pytype.single')
PYTYPE_SINGLE = _get_executable('pytype-single', 'pytype.main')


def resolved_file_to_module(f):
Expand Down

0 comments on commit 55cb8a1

Please sign in to comment.