Skip to content

Commit

Permalink
fix a smol bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Sep 15, 2023
1 parent 0c4b357 commit 307c739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy_primer/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ async def setup(self) -> None:
print(e.output)
if e.stderr:
print(e.stderr)
raise RuntimeError(f"pip install failed for {self.location}") from e
raise RuntimeError(f"pip install failed for {self.name}") from e

def get_mypy_cmd(self, mypy: str | Path, additional_flags: Sequence[str] = ()) -> str:
mypy_cmd = self.mypy_cmd
Expand Down

0 comments on commit 307c739

Please sign in to comment.