Correct the name of mypy

It seems that mypy's preference for its name is mypy (or even my[py]), but
not Mypy.
This commit is contained in:
Dave Pearson
2022-10-13 13:45:34 +01:00
parent 91a13406e6
commit a90a2fd728

View File

@@ -64,7 +64,7 @@ python stopwatch.py
Type hints are entirely optional in Textual. We've included them in the example code but it's up to you whether you add them to your own projects.
We're a big fan of Python type hints at Textualize. If you haven't encountered type hinting, it's a way to express the types of your data, parameters, and return values. Type hinting allows tools like [Mypy](https://mypy.readthedocs.io/en/stable/) to catch bugs before your code runs.
We're a big fan of Python type hints at Textualize. If you haven't encountered type hinting, it's a way to express the types of your data, parameters, and return values. Type hinting allows tools like [mypy](https://mypy.readthedocs.io/en/stable/) to catch bugs before your code runs.
The following function contains type hints: