Skip to content

Commit 803a962

Browse files
authored
Update costs to run mypy (#170)
1 parent c9b14c2 commit 803a962

File tree

2 files changed

+162
-88
lines changed

2 files changed

+162
-88
lines changed

mypy_primer/model.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ def __repr__(self) -> str:
5555
result = f"Project(location={self.location!r}, mypy_cmd={self.mypy_cmd!r}"
5656
if self.name_override:
5757
result += f", name_override={self.name_override!r}"
58-
if self.pyright_cmd:
59-
result += f", pyright_cmd={self.pyright_cmd!r}"
58+
result += f", pyright_cmd={self.pyright_cmd!r}"
6059
if self.ty_cmd:
6160
result += f", ty_cmd={self.ty_cmd!r}"
6261
if self.pyrefly_cmd:

0 commit comments

Comments
 (0)